Login

Welcome, Guest. Please login or register.

May 24, 2025, 12:23:58 pm

Author Topic: urgent matrices help  (Read 1338 times)  Share 

0 Members and 1 Guest are viewing this topic.

anonymous1

  • Guest
urgent matrices help
« on: June 10, 2012, 08:07:29 pm »
0
how do i solve the following using matrices:
2x - 3y + z = 3
-3x + y - 2z =1
x- y - z = 6

thanks

ligands

  • Victorian
  • Forum Obsessive
  • ***
  • Posts: 298
  • Respect: +24
  • School: catholic college bendigo
  • School Grad Year: 2012
Re: urgent matrices help
« Reply #1 on: June 10, 2012, 08:13:42 pm »
0
Put 2 -3 1, -3 1 -2, 1 -1 -1 in 3x3 matrix call this A
Put x,y,z in a colum matrix this X
Put 3, 1, 6 in a colum matrix this B

To find x y z set up the equation X = A^-1B
« Last Edit: June 10, 2012, 08:26:03 pm by ligands »

anonymous1

  • Guest
Re: urgent matrices help
« Reply #2 on: June 10, 2012, 08:21:22 pm »
0
so B * A^-1

ligands

  • Victorian
  • Forum Obsessive
  • ***
  • Posts: 298
  • Respect: +24
  • School: catholic college bendigo
  • School Grad Year: 2012
Re: urgent matrices help
« Reply #3 on: June 10, 2012, 08:25:06 pm »
0
Yep sorry if it's messy on phone lol, the original equation will be AX = B and to find X you need to go A^-1AX = A^-1B which equals IX = A^-1B which means X = A^-1B and A will be the coefinet matrix, x will be the variable matrix and b will be the answer matrix, I think I put it the wrong way around in the other comment let me edit it

Flying Emu

  • Victorian
  • Trendsetter
  • **
  • Posts: 136
  • Respect: 0
Re: urgent matrices help
« Reply #4 on: June 11, 2012, 05:14:37 pm »
0
This what you mean lig?

--             --      -- --        -- --
|  2  -3   1 |      | X |        | 3 |
| -3  1   -2 |  X  | Y |   =   | 1 |
|  1  -1  -1 |      | Z |        | 6 |
--             --      -- --         -- --

*Yes i know, horrible brackets.

Phy124

  • Honorary Moderator
  • Part of the furniture
  • *******
  • Posts: 1354
  • Respect: +464
Re: urgent matrices help
« Reply #5 on: June 11, 2012, 05:57:19 pm »
+1
This what you mean lig?

--             --      -- --        -- --
|  2  -3   1 |      | X |        | 3 |
| -3  1   -2 |  X  | Y |   =   | 1 |
|  1  -1  -1 |      | Z |        | 6 |
--             --      -- --         -- --

*Yes i know, horrible brackets.
Heh, nice work :P (Easier method below)



Code: [Select]
[tex]\begin{bmatrix}
2 & -3 & 1\\
-3 & 1 & -2\\
1 & -1 & -1
\end{bmatrix}\begin{bmatrix}
x\\
y\\
z
\end{bmatrix}=\begin{bmatrix}
3\\
1\\
6
\end{bmatrix}[/tex]

Use this for help







Solve for X;



By the way, I realise I'm just reiterating what has previously been discussed, just showing you guys some latex code in the progress. (Time to try and get everyone on these boards on latex I reckon ;))

edit:

I forgot to mention you can also solve it using the solve function on your calculator.

(From what I remember regarding TI-89) The calculator has a solve function for two unknowns, you can just add a third equation to this and a third unknown to solve for. This might be quicker then putting all those values into a matrix.

IIRC it was something like;

Solve(  and    for {a,b})

and you could just change it to;

Solve(2x-3y+z=3 and -3x+y-2z=1 and x-y-z=6 for {x,y,z})
« Last Edit: June 11, 2012, 06:08:03 pm by ~My♥Little♥Pony~ »
2011
Mathematical Methods | Physics | Chemistry | English | Business Management

2012-2017
Bachelor of Science in Applied Mathematics and Bachelor of Civil Engineering (Honours) @ Monash University

Current
Transport Modeller @ Arup

ligands

  • Victorian
  • Forum Obsessive
  • ***
  • Posts: 298
  • Respect: +24
  • School: catholic college bendigo
  • School Grad Year: 2012
Re: urgent matrices help
« Reply #6 on: June 11, 2012, 06:41:23 pm »
0
haha yer i was on my phone so i couldn't be bothered using latex

anonymous1

  • Guest
Re: urgent matrices help
« Reply #7 on: June 11, 2012, 09:50:59 pm »
0
thanks everyone :)

Flying Emu

  • Victorian
  • Trendsetter
  • **
  • Posts: 136
  • Respect: 0
Re: urgent matrices help
« Reply #8 on: June 12, 2012, 07:06:57 pm »
0
Heh, nice work :P (Easier method below)

OH WOW.... T.T