Login

Welcome, Guest. Please login or register.

September 28, 2025, 04:08:31 am

Author Topic: Help with Matrices  (Read 1518 times)  Share 

0 Members and 1 Guest are viewing this topic.

Odette

  • Guest
Help with Matrices
« on: February 28, 2008, 06:53:08 pm »
0
How do you get from
   This
[2 1 3 -5]
[3 5 6 -5]
[4 8 8 -5]
     to
[1   2    2    -1.25]
[0   1 (1/3)  (5/6)]
[0   0    1    -1.25]
    That ?

Your help will be appreciated. Thanks (Btw its to row echelon form) 
 

cosec(x)

  • Victorian
  • Adventurer
  • *
  • Posts: 24
  • Respect: +1
Re: Help with Matrices
« Reply #1 on: February 28, 2008, 07:34:01 pm »
0
Is it an augmented matrix used to solve three simultaneous equations
By using:
2x+y+3z=-5    (1)
3x+5y+6z=-5   (2)
4x+8y+8z=-5  (3)

I got
(3)  - 2(1)
6y+2z=5  (4)

2(2) - 3(1)
7y+3z=5   (5)

From this
2(5) - 3(4)
-4y=-5
therefore y=1.25
from this we can see z=-5/4, x= 5/8 (by subbing in values into prev. equs)

Alternatively, matrices can be used to do this (the purpose of reduced row echelon form)

My reduced matrix was

[2 1  3 | -5]
[0 7  3 | 5 ]
[0 0 -4 | 5]

(obtained by step1: 2r2-3r1; r3-2r1  step2: 7r3-6r1)
It strikes me as odd that the first row is different in your desired result, as in making reduced row echelon form, you don't need to touch the top row

hope it helps!!!!
First Year Uni, BAeroEng/BSc @Monash

midas_touch

  • Victorian
  • Forum Leader
  • ****
  • Posts: 797
  • Serial Trout Slapper
  • Respect: +4
Re: Help with Matrices
« Reply #2 on: February 28, 2008, 08:38:54 pm »
0
There is probably a more efficient method in doing this, but heres a series of steps i used to get the row echelon form of the above matrix:

[2 1 3] -5
[3 5 6] -5
[4 8 8] -5

Divide row 3 by 4, and swap with row 1

[1 2 2] -5/4
[3 5 6] -5
[2 1 3] -5

Subtract row 2 by 3 times row 1, and subtract row 3 by 2 times row 1

[1 2 2] -5/4
[0 -1 0] -5/4
[0 -3 -1] -5/2

Multiply row 2 by negative 1, divide row 3 by negative 3, then swap rows 2 and 3

[1 2 2] -5/4
[0 1 1/3] 5/6
[0 1 0] 5/4

Subtract row 3 by row 2

[1 2 2] -5/4
[0 1 1/3] 5/6
[0 0 -1/3] 5/12

Finally, multiply row 3 by -3

[1 2 2] -5/4
[0 1 1/3] 5/6
[0 0 1] -5/4

Also, you shouldn't work with decimals and fractions in the same problem, choose either one or the other


Some snippets of what goes on in IRC:

Quote
<chath> ill say " i wont let you go until u kiss me bitch"

Quote
<@enwiabe> i have the BEST orgasms when i'm working through a math problem


Quote
<@mark_alec> my bikini line however, is most important

Are you scared yet?

Odette

  • Guest
Re: Help with Matrices
« Reply #3 on: February 28, 2008, 09:54:52 pm »
0
Btw how did you get 5/8 for x? i keep getting -5/4 for x :(

cosec(x)

  • Victorian
  • Adventurer
  • *
  • Posts: 24
  • Respect: +1
Re: Help with Matrices
« Reply #4 on: February 28, 2008, 10:02:08 pm »
0
sorry, its meant to be x=-5/4 typo :-[

drat, this is what happens when you do your working on the back of an envelope :uglystupid2:
First Year Uni, BAeroEng/BSc @Monash

Odette

  • Guest
Re: Help with Matrices
« Reply #5 on: February 28, 2008, 10:09:10 pm »
0
Oh that's ok lol thanks for your help ! I just thought I was doing something wrong >.<