假设有以下二元一次方程组:
2x+3y=52x + 3y = 5
x4y=3x - 4y = -3
求方程组的解,这个解很简单就能求出来,x=1,y=1x = 1, y = 1
我们常见的几何理解即如下图,是2x+3y=5x4y=32x + 3y = 5与x - 4y = -3两条直线的交点:
方程组的几何解释
如果从向量角度看呢,先将方程组写成矩阵的形式,即:
[2314][xy]=[53]\left[ \begin{matrix}2& 3 \\1 & -4 \\\end{matrix} \right]\left[ \begin{matrix}x \\y \\\end{matrix} \right]=\left[ \begin{matrix}5 \\-3 \\\end{matrix} \right]
变形:
x[21]+y[34]=[53]x\left[ \begin{matrix}2 \\1 \\\end{matrix} \right]+y\left[ \begin{matrix}3 \\-4 \\\end{matrix} \right]=\left[ \begin{matrix}5 \\-3 \\\end{matrix} \right]
a=(2,1),b=(3,4),u=1a+1ba=(2,1),b=(3,-4),u=1a+1b,画出向量a,b,ua,b,u的图:
方程组的几何解释
可看出,将x=1,y=1x=1,y=1带入后,正好得到$u=(5,-3),此即时方程组的另一种几何解释。

相关文章:

  • 2022-01-08
  • 2021-11-14
  • 2021-06-13
  • 2021-09-02
  • 2021-07-06
  • 2021-08-29
  • 2021-04-16
  • 2021-10-01
猜你喜欢
  • 2021-07-05
  • 2021-11-27
  • 2022-12-23
  • 2021-08-15
  • 2021-12-03
相关资源
相似解决方案