How Do You Solve an Augmented Matrix with Infinite Solutions Using Vectors?

  • Thread starter Thread starter kamui8899
  • Start date Start date
  • Tags Tags
    Matrix
kamui8899
Messages
15
Reaction score
0
I have an augmented matrix:

1 2 3 4
0 3 4 5
3 12 1 2

Now this matrix simplifies to:

1 2 3 4
0 3 4 5
0 0 0 0

So there are infinite solutions, however I have to write all the solutions to the equation. I wanted to do this with vectors.

So I first solved for x and for y and got:

y = (4/3)z - 5/3

x = -2((4/3)z - 5/3) -3z + 4

So now what do I do, can I simply write the answer as:

<-2((4/3)z - 5/3) -3z + 4, (4/3)z -5/3, z>

which then goes to

z<-2(4/3) - 3, 4/3, 1> + <-2(-5/3) +4, 5/3, 0>

?

This doesn't seem correct to me though. Did I solve the equation correctly, and if so, is what I wrote the correct answer for finding all solutions to the equation?

Thanks for the help.
 
Physics news on Phys.org
You did the reduction wrong. The bottom row does not become 0.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top