fsm said:
Homework Statement
Find the basis of the solution space of the homogeneous system of linear equations.
x-2y+3z=0
-3x+6y-9z=0
In my (not so humble) opinion, too many students get the idea that "linear algebra" is all about "matrices". To combat that, I prefer to avoid using them for problems like this.
The first thing I would do is try to "solve" those equations in the "usual" way: seeing "x" in one and "-3x" in the other I multiply the first equation by 3 and add to the second equation. Much to my surprise, everything cancels! That tell me that the two equations are not independent and there really is just one equation there: x- 2y+ 3z= 0.
Okay, that means every <x, y, z> in the solution space must satisfy x- 2y+ 3z= 0. I can pick
two of the variables to be anything I want, and solve for the third. That means the solution space is 2 dimensional and I need 2 basis vectors. As I said, I could let any two variables be any two numbers I want. Since it is easy to solve for x: x= 2y- 3z, I can choose y and z to be whatever I want. I prefer to use 1 and 0. (I have a preference for really
easy numbers!)
If y= 1 and z= 0, then x= 2(1)-3(0)= 2. <2, 1, 0> is in the solution space. If y= 0 and z= 1, then x= 2(0)- 3(1)= -3. <-3, 0, 1> is also in the solution space. It is easy to see those are independent (it is a result of choosing "0, 1" and "1, 0") so a basis for the solution space is {<2, 1, 0>, <-3, 0, 1>}.
You say that the vectors you got were "not correct". How did you determine that? You should realize that there are an infinite number of correct answers so your (correct) answer might well be different from that got by someone else or given in your text.
Homework Equations
Ax=0
The Attempt at a Solution
I first set up my equation
\left[ \begin{array}{cccc} 1 & 2 & -3 \\ -3 & 6 & 9 \end{array} \right]*\left[ \begin{array}{cccc} x \\ y \\ z \end{array} \right]=0
Then I put A in rref to get:
\left[ \begin{array}{cccc} 1 & -2 & 0 \\ 0 & 0 & 1 \end{array} \right]
So I get the system:
x-2y=0
z=0
From here I'm lost. I don't know if I should paramterize or what. I did try setting z=t x=s, but the vectors I got were not correct. Any help would be great.