A tradition. So whenever i come across these questions i would set y equal the parameter?
Okay i just did the next questions which is 2x-y+x=6 (is it 2x - y + z = 6 ?) and x-z=3, the answer says that z=parameter
Im confused now.. :S
No your understanding isn't exactly correct!
Can I ask you CAS guys if you learn't Gaussian elimanation or row reduction?
Matrices are very powerful for solving simulataneous
linear equations, because programmers have written algorithms for programs to follow to solve a linear equation with several variables.
so we have:
x - z = 3 ...1
2x - y + z = 6 ...2
I would first off let eqn 3 = eqn 2 - 2*eqn 1
=> -y + 3z = 0 ...3
so:
x - z = 3
- y + 3z = 0
so basically we can say that:
x = z + 3
y = 3z
so let z = t (parameter)
=> x = 3 + t
=> y = 3t
=> (x,y,z) = (3,0,0) + t*(1,3,1) (every solution)
If you guys did row reduction or gaussian elimination on matrices I could easily tell you what to assign as your parameter
If say I have a matrix in this form:
1 1 1 | 1
0 0 0 | a
where a =/= 0, then my system of linear equations has no solution! such that one of these linear equations says that 0 = a (something other than zero)
If I have this
1 0 0 | a
0 1 0 | b
0 0 1 | c
then I have a unique solution (
note: you can only have a unique solution if your system of linear equations has no parameters, this will usually mean that for every variable you will need a linear equation)
Then you have linear equations with parameters!
say I have:
1 0 1|a
0 1 1|b
then the parameter is z
or
1 1 0|a
0 0 1|b
the the parameter is y
or (you probably wont see this in methods)
1 1 1| a
0 0 0| 0
then y and z are parameters.
The last case comes from having two linear equations where one is redundant. If you focus on the other 2 you will see that the parameter is basically a value that is not a leading entry (i.e. there is a number other than 0 before it).
I hope this helps! If you do linear algebra in uni you will look at this in fair detail.