问题1.解决以下齐次线性方程组的每个系统:
x + y – 2z = 0
2x + y – 3z = 0
5x + 4y – 9z = 0
解决方案:
Given:
x + y – 2z = 0
2x + y – 3z =0
5x + 4y – 9z = 0
This system of equations can be expressed in the form of a matrix AX = B
Now find the determinant,
= 1(1 × (-9) – 4 × (-3)) – 1(2 × (-9) – 5 × (-3)) – 2(4 × 2 – 5 × 1)
= 1(-9 + 12) – 1(-18 + 15) – 2(8 – 5)
= 1 × 3 – 1 × (-3) – 2 × 3
= 3 + 3 – 6
= 0
So, D = 0, that means this system of equations has infinite solution.
Now,
Let z = k
⇒ x + y = 2k
And 2x + y = 3k
Now using the Cramer’s rule
x =
x =
x =
x = k
Similarly,
y =
y =
y =
y = k
Therefore,
x = y = z = k.
问题2.求解以下每个齐次线性方程组:
2x + 3y + 4z = 0
x + y + z = 0
2x + 5y – 2z = 0
解决方案:
2x + 3y + 4z = 0
x + y + z = 0
2x + 5y – 2z = 0
This system of equations can be expressed in the form of a matrix AX = B
Find the determinant
= 2(1 × (-2) – 1 × 5) – 3(1 × (-2) – 2 × 1) + 4(1 × 5 – 2 × 1)
= 2(-2 – 5) – 3(-2 – 2) + 4(5 – 2)
= 2 × (-7) – 3 × (-4) + 4 × 3
= -14 + 12 + 12
= -10
Hence, D ≠ 0, so the system of equation has trivial solution.
Therefore, the system of equation has only solution as x = y = z = 0.
问题3:求解以下每个齐次线性方程组:
3x + y + z = 0
x – 4y + 3z = 0
2x + 5y – 2z = 0
解决方案:
Given:
3x + y + z = 0
x – 4y + 3z = 0
2x +5y – 2z = 0
This system of equations can be expressed in the form of a matrix AX = B
Find the determinant
= 3(8 – 15) – 1(-2 – 6) + 1(13)
= -21 + 8 + 13
= 0
So, the system has infinite solutions:
Let z = k,
So,
3x + y = -k
x – 4y = -3k
Now,
x =
y =
x =
y =
z = k
and there values satisfy equation 3
Hence, x = -7k, y = 8k, z = 13k
问题4.找到以下线性方程组具有非平凡解的λ的实数值
2λx– 2y + 3z = 0
x +λy+ 2z = 0
2x +λz= 0
解决方案:
Finding the determinant
= 3λ3 + 2λ – 8 – 6λ
= 2λ3 – 4λ – 8
Which is satisfied by λ = 2 {for non-trival solutions λ =2}
Now let z = k
4x – 2y = -3k
x + 2y = -3k
x =
y =
Hence, the solution is x = -k, y = , z = k
问题5:如果a,b,c是非零实数,并且方程组是
(a – 1)x = y + z
(b – 1)y = z + x
(c – 1)z = x + y
有一个非平凡的解,则证明ab + bc + ca = abc
解决方案:
Finding the determinant
Now for non-trivial solution, D = 0
0 = (a – 1)[(b – 1)(c – 1) – 1]+1[-c + 1 – 1] + [-c + 1 – 1] – [ 1 + b – 1]
0 = (a – 1)[bc – b – c + 1 – 1] – c – b
0 = abc – ab -ac + b + c – c – b
ab + bc + ac = abc
Hence proved