Tutors Answer Your Questions about Matrices-and-determiminant (FREE)
Question 570370: Using the Gauss/Jordan method to solve the system, writing all row operations between the affected matrices, using the format: rn + k x rm = Rn The system is: x-2y+z=6
2x+y-3z=-3
x-3y+3z=10
Answer by Edwin McCravy(6936) (Show Source):
You can put this solution on YOUR website!
We want to try to end up with a matrix
that looks like this:
with 0's in the three lower left hand positions:
We can get a 0 where the 2 is by multiplying Row 1 by -2
and adding it to row 2:
That instruction is written as
-2·R1+1·R2->R2

Notice that Row 2 will be simpler if we divide it through by 5,
That instruction is written R2->R2

We can get a 0 where the 1 is in the lower left corner by
multiplying Row 1 by -1 and adding it to row 3:
That instruction is written as
-1·R1+1·R3->R3

We can get a 0 where the -1 is in the bottom row by
multiplying Row 2 by 1 and adding it to row 3:
That instruction is written as 1R2+1R3->R3

Now that we have 0's in the lower lefthand corner,
we convert the matrix back to a system of equations
in x, y and z:
or just
Now we use back substitution.
From the third equation, z=1, we substitute
that into the middle equation, getting:
y-z = -3
y-1 = -3
y = -2
Then substitute y=-2 and z=1 in the 1st equation:
x-2(-2)+(1) = 6
x+4+1 = 6
x+5 = 6
x = 1
Solution (x,y,z) = (1,-2,1)
Edwin
Question 570183: Can't solve this determinant
2 5 0 4
1 -2 0 2
3 -1 1 6
4 0 3 -2 Answer by richard1234(4796) (Show Source):
You can put this solution on YOUR website!For this square matrix, the determinant is equal to
2 det A - 5 det B + 0 det C - 4 det D
where A,B,C,D are the 3x3 matrices whose entries are neither in a row or column of the top entry (e.g. matrix A would contain -2 0 2/-1 1 6/0 3 -2). Additionally, you would have to find the determinant of 3x3 matrices, which reduces to a several 2x2 matrices.
Since this problem requires a lot of "bashing" (not the correct word usage, but math people use it all the time), you could use a calculator. Most graphing calculators can evaluate determinants of square matrices.
Question 568986: Crammer's Rule? Please help!
1) x+2y=2
3x + y = 3
2) 3x - y = -2
x+ 2y = 4
3) x+ 3y =2
3x - y = -3
4) 2x - y = -2
x+y = - 1
5) 2x - y = -3
x + 2y = 4
Thank you so much! Answer by Theo(2973) (Show Source):
You can put this solution on YOUR website!here's a reference on cramer's rule.
i'll do one.
you do the rest.
the reference for applying cramer's rule can be found here:
http://www.purplemath.com/modules/cramers.htm
you will need to be able to find the value of the determinant / matrix.
the reference for that can be found here:
http://www.purplemath.com/modules/determs.htm
your first problem is:
x + 2y = 2
3x + y = 3
you set up a matrix as shown below:
1 2 | 2
3 1 | 3
cramer's rule says:
x = Dx / D
y = Dy / D
first you want to find D.
That's the left part or our matrix which is equal to:
1 2
3 1
the value for D is equal to 1*1 - 2*3 = 1 - 6 = -5
next we want to find Dx
Dx is found by replacing the first column in D with the result column.
the matrix for Dx becomes:
2 2
3 1
the value for Dx is equal to 2*1 - 2*3 = 2 - 6 = -4
next we want to find Dy
Dy is found by replacing the second column in D with the result column.
the matrix for Dy becomes:
1 2
3 3
the value for Dy is equal to 1*3 - 2*3 = 3 - 6 = -3
we have:
D = -5
Dx = -4
Dy = -3
we now solve for x and y as follows:
x = Dx / D = -4 / -5 = 4/5
y = Dy / D = -3 / -5 = 3/5
our final answer is:
x = 4/5
y = 3/5
i will solve this system of equations the standard way to confirm that these answers are what we should expect.
the original equations are:
x + 2y = 2
3x + y = 3
multiply the second equation by -1 to get:
x + 2y = 2
-6x - 2y = -6
add these equations together to get:
-5x = -4
divide both sides of this equation by -5 to get:
x = 4/5
substitute 4/5 for x in the first equation to get:
x 2y = 2
this becomes:
4/5 + 2y = 2
subtract 4/5 from both sides of this equation to get:
2y = 2 - 4/5
simplify to get:
2y = 6/5
divide both sides of this equation by 2 to get:
y = 6/5 * 1/2
this becomes:
y = 3/5
our answer doing it the conventional way are:
x = 4/5
y = 3/5
this agrees with our answer that we derives using cramer's rule, so the rule is confirmed as being accurately processed.
you should be able to do the rest on your own.
let me know if you have problems.
Question 568945: whta is the determinant of
2 3
3 2
Answer by bucky(2097) (Show Source):
You can put this solution on YOUR website!This is a 2-by-2 determinant, meaning that it has two rows and two columns.
.
The value of a 2-by-2 determinant is found by multiplying along the diagonals.
.
The first diagonal to multiply along is the one that goes from the upper left corner to the lower right corner. This diagonal multiplication gives you the product of 2 times 2, which, of course, equals +4.
.
The second diagonal to multiply along is the one that goes from the upper right corner to the lower left corner. This diagonal multiplication gives you the product of 3 times 3 which is +9.
.
The final step is to note the product of the first diagonal multiplication (down and to the right - in this problem +4) and subtract from it the product of the second diagonal (down and to the left - in this problem +9).
.
So the value of this determinant is given by:
.
+4 - (+9) = 4 - 9 = -5
.
The answer to this problem is that the value of the given determinant is -5.
.
In summary, to get the value of a 2-by-2 determinant, first find the product obtained by multiplying down and to the right and second, subtract from that the product obtained by multiplying down and to the left.
.
I hope this helps you to understand the rules for evaluating 2-by-2 determinants.
.
Question 567612: sum of two consecutive odd integers is 36.find them Answer by stanbon(48552) (Show Source):
You can put this solution on YOUR website!sum of two consecutive odd integers is 36.find them
1st: 2x-1
2nd: 2x+1
---
Equation:
sum = 36
4x = 36
x = 9
---
1st: 2x-1 = 17
2nd: 2x+1 = 19
==============
Cheers,
Stan H.
Question 567404: Solve the system of equations by using the inverse of the coefficient matrix.
X+2y=4
2x-3y=1 Answer by Edwin McCravy(6936) (Show Source):
Question 567371: There were 510 people at a play. The admission price was 2 for adults and 1 for children. The admission receipts were 810. How many adults and how many children attended? Answer by Maths68(1154) (Show Source):
You can put this solution on YOUR website!Let
Adults = x
Children = 510-x
Total receipts = 810
Admission price for Adults = 2
Admission price for Children = 1
(Admission price for Adults)(Adults)+ (Admission price for Children)(Children) = Total receipts
(2)(x)+(1)(510-x)=810
2x+510-x=810
x=810-510
x=300
Adults = x = 300
Children = 510-x = 510-300 = 210
Check
======
300*2+210*1=810
600+210=810
810=810
Question 567343: x + y = 3k
x - y = k
The solution of the system shown is _____. Answer by Edwin McCravy(6936) (Show Source):
You can put this solution on YOUR website!
x + y = 3k
x - y = k
Add the equations term by term just as they are and the terms in y will cancel:
x + y = 3k
x - y = k
-----------
2x = 4k
Divide both sides by 2
x = 2k
Multiply the second equation x - y = k through by -1 making it
-x + y = -k
Then add it to the first equation term by term and the terms in x will cancel:
x + y = 3k
-x + y = -k
-----------
2y = 2k
Divide both sides by 2
y = k
Answer (x,y) = (2k,k)
Edwin
Question 567326: 3x-2y=2
2x-y=2
Answer by Alan3354(21605) (Show Source):
Question 565133: Solve the system using any algebraic method with work shown.
2x+6y=17
2x-10y=9 Answer by mananth(10549) (Show Source):
You can put this solution on YOUR website!2 x + 6 y = 17 .............1
2 x -10 y = 9 .............2
Eliminate y
multiply (1)by 5
Multiply (2) by 3
10 x 30 y = 85
6 x -30 y = 27
Add the two equations
16 x = 112
/ 16
x = 7
plug value of x in (1)
2 x + 6 y = 17
14 + 6 y = 17
6 y = 17-14
6 y = 3
y = 0.50
m.ananth@hotmail.ca
Question 565135: solve the system using the elimination method with work shown.
2x+6y=17
2x-10y=9 Answer by mananth(10549) (Show Source):
You can put this solution on YOUR website!2 x + 6 y = 17 .............1
2 x -10 y = 9 .............2
Eliminate y
multiply (1)by 5
Multiply (2) by 3
10 x 30 y = 85
6 x -30 y = 27
Add the two equations
16 x = 112
/ 16
x = 7
plug value of x in (1)
2 x + 6 y = 17
14 + 6 y = 17
6 y = 17-14
6 y = 3
y = 0.50
Question 564321: What are the w, x, y, and z values using this matrix?
1 1 1 1 4
0 1 4 3 8
0 0 1 3/5 9/5
0 0 0 1 -2 Answer by Edwin McCravy(6936) (Show Source):
You can put this solution on YOUR website!
This matrix is in "row echelon" form because each
row's left-most non-zero element is 1 and they
move to the right as we go down the matrix. So the
matrix is an abbreviation for this system:
Removing all the 1 coefficients and the 0 terms:
We use "back substitution".
The bottom, fourth, equation is already solved for z,
so we substitute -2 for z in the third equation:
Now we substitute 3 for y and -2 for z in the
second equation:
Finally we substitute 2 for x, 3 for y
and -2 for z in the first equation:
Solution (w,x,y,z) = (1,2,3,-2)
Edwin
Question 564048: 3x-5y+4z=43
3x-2y-2z=10
x-y+3z=25 Answer by stanbon(48552) (Show Source):
You can put this solution on YOUR website!3x-5y+4z=43
3x-2y-2z=10
x-y+3z=25
-----
Use any method you know to get:
x = 8
y = 1
z = 6
===========
Cheers,
Stan H.
=================
Question 563956: 2 3
0 -1
1 4
what are the dimensions? Answer by TutorDelphia(189) (Show Source):
You can put this solution on YOUR website!The dimensions are the number of rows by the number of columns. There are 3 rows two columns here so its a 3x2
To remember it I either think of a Remote Control Car (an RC Car) or RC Cola to remember its rows first then columns. Also, if you think about x,y, we do going across first and then going up and down.
Question 561861: Could you give me about six matrices with solutions of 5,9,10,12,6, and 18? Answer by Edwin McCravy(6936) (Show Source):
Question 560099: find the inverse of the following matrices.
1 1 1 1
1 2 -1 2
1 -1 2 1
1 3 3 2 Answer by Edwin McCravy(6936) (Show Source):
Question 560095: Solve the following system of equations, using the augmented matrix method. You must reduce the matrix to its row reduced echelon form and write out the complete solution to the system.
x+2y-z= -3
3x+y+z=8
2x-2y+2z=12 Answer by solver91311(12126) (Show Source):
You can put this solution on YOUR website!
That is at least an hour of work rendering the complete solution on this site. How much are you willing to pay?
John

My calculator said it, I believe it, that settles it
Question 558568: find the solution for x, y, and z
x - y - 2z = -1
x + 2y + z = 5
5x + 4y - z = 13
I found:
x = 1 + k
y = 2 - k
z = k Answer by Edwin McCravy(6936) (Show Source):
Question 558333: perform matrix row operation and write the new matrix
1 2 2 2
0 1 -1 2 -5R2+R3
0 5 4 1 Answer by Edwin McCravy(6936) (Show Source):
You can put this solution on YOUR website!perform matrix row operation and write the new matrix
1 2 2 2
0 1 -1 2 -5R2+R3
0 5 4 1
-5R2+R3
-5R2 means to do this work to the side
1. Multiply row #2 by -5 : -5(0 1 -1 2) = (0 -5 5 -10)
and then +R3 means
2. Add that to row #3 : (0 -5 5 -10) + (0 5 4 1) = (0 0 9 -9)
3. Replace row #3 by (0 0 9 -9)
1 2 2 2
0 1 -1 2
0 0 9 -9
That's the new matrix.
Edwin
Question 557397: rank of the matrix ⎡
4 5 6 7
3 4 5 6
2 3 4 5
1 2 3 4 Answer by Edwin McCravy(6936) (Show Source):
You can put this solution on YOUR website!
4 5 6 7
3 4 5 6
2 3 4 5
1 2 3 4
Multiply row 2 by -1 and add it to row 1
1 1 1 1
3 4 5 6
2 3 4 5
1 2 3 4
Multiply row 3 by -1 and add it to row 2
1 1 1 1
1 1 1 1
2 3 4 5
1 2 3 4
Multiply row 4 by -1 and add it to row 3
1 1 1 1
1 1 1 1
1 1 1 1
1 2 3 4
Multiply row 1 by -1 and add it to row 2
1 1 1 1
0 0 0 0
1 1 1 1
1 2 3 4
Multiply row 1 by -1 and add it to row 3
1 1 1 1
0 0 0 0
0 0 0 0
1 2 3 4
Swap rows 2 and 4
1 1 1 1
1 2 3 4
0 0 0 0
0 0 0 0
Multiply row 1 by -1 and add it to row 2
1 1 1 1
0 1 2 3
0 0 0 0
0 0 0 0
Multiply row 2 by -1 and add it to row 1
1 0 -1 -2
0 1 2 3
0 0 0 0
0 0 0 0
That's in row reduced echelon form. The number of
not-all-zero rows is 2, so its rank is 2.
Edwin
Question 557023: thirty buliding operatives employed on a construction site work a 37 hour week. if the 30 operatives comprise tradesmen earning £4.75/ hour and labourers earning £4.25/ hour, how many tradesmen and how many labourers are there if the weekly bill is £5124.50. using matrices? Answer by KMST(595) (Show Source):
You can put this solution on YOUR website!Let  be the number of tradesmen and  be the number of laborers.
 and
 --->  (multiplying both sides times 4 to get rid of decimals)
  = 
Now you have your matrices:
 =
 =  , and
 = 
The equation with matrices is

Now you have to find the inverse matrix  and calculate
 = 
Whichever way you were taught to calculate it
 =  and
 =   =
 =  = 
So the number of tradesmen is  , and
the number of laborers is  .
Question 556199: integral 9x+4
----- dx
x2-7x+15 Answer by stanbon(48552) (Show Source):
You can put this solution on YOUR website!integral [(9x+4)/(x^2-7x+15)] dx
---
Use partial fraction decompostion to get::
------------
= [(A/(x-5))+(B/(x-3)] = (9x/4)/(x^2-7x+15)
-----
A(x-3)+B(x-5) = 9x+4
----
A+B = 9
-3A-5B = 4
-----
3A+3B = 27
-3A-5B = 4
--------
-2B = 31
B = -31/2
---
A = 49/2
---------------
integra[((49/2)/(x-5) - (31/2)/(x-3)]
----
= (49/2)ln(x-5) - (31/2)ln(x-3)
----
Check the following site to see how this all works.
===============
http://www.math.ucdavis.edu/~kouba/CalcTwoDIRECTORY/
partialfracsoldirectory/PartialFracSol.html#SOLUTION 1
=====================
Cheers,
Stan H.
==============
Question 556198: 2 14
y= - x + --
3 3
14
x=0,y= --
3 Answer by stanbon(48552) (Show Source):
You can put this solution on YOUR website! 2 14
y= - x + --
3 3
If x=0 ,y= 14/3
-------------------
That is true.
And if x = 3, y = 20/3
--------------------------
Plot those 2 points and draw a line thru them.

----
Cheers,
Stan H.
====
Question 555189: Multiply matrix by matrix  Answer by Edwin McCravy(6936) (Show Source):
Question 555127: find the products of the following equation in clock arithmetic: 12 x 3 Answer by Alan3354(21605) (Show Source):
You can put this solution on YOUR website!find the products of the following equation in clock arithmetic: 12 x 3
-----
That's not an equation, there's no equal sign.
There's only one product.
12*3 = 36
Don't know what you mean by clock arithmetic.
Question 553450: solve the following set of equations
2x+3y+z=13
3x+2y+4z=17
4x+5y+2z=24 Answer by Theo(2973) (Show Source):
You can put this solution on YOUR website!your equations are:
2x+3y+z=13 (equation 1)
3x+2y+4z=17 (equation 2)
4x+5y+2z=24 (equation 3)
multiply equation 1 by -4 and add it to equation 2 to get:
-8x - 12y -4z = -52 plus:
3x + 2y + 4z = 17 equals:
-5x -10y = -35 (equation 4)
multiply equation 1 by -2 and add it to equation 3 to get:
-4x - 6y - 2z = -26 plus:
4x + 5y + 2z = 24 equals:
-y = -2
multiply both sides of this equation by -1 to get:
y = -2
that's one of the values you are looking for.
substitute for y in equation 4 to get:
-5x - 10(2) = -35
simplify to get:
-5x - 20 = -35
add 20 to both sides of the equation to get:
-5x = -15
divide both sides of the equation by -5 to get:
x = 3
that's the second of the values you are looking for.
so far you have:
x = 3
y = 2
substitute for x and y in equation 1 to get:
2(3) + 3(2) + z = 13
simplify to get:
6 + 6 + z = 13
combine like terms to get:
12 + z = 13
substract 12 from both sides of the equation to get:
z = 1
that's the last of the values you are looking for.
you have:
x = 3
y = 2
z = 1
substitute in all 3 original equations to confirm these solutions apply to all of the equations in the system.
your original equations are:
2x+3y+z=13
3x+2y+4z=17
4x+5y+2z=24
after substitution, these equations become:
2(3) + 3(2) + 1 = 13
3(3) + 2(2) + 4(1) = 17
4(3) + 5(2) + 2(1) = 24
after simplification, these equations become:
6 + 6 + 1 = 13
9 + 4 + 4 = 17
12 + 10 + 2 = 24
after combining like terms, these equations becomes:
13 = 13
17 = 17
24 = 24
all equations are true confirming the values for x and y and z are good.
answer is:
x = 3
y = 2
z = 1
Question 552939: The matrix (-3 x -top- 2 2/3 -bottom-) has no inverse. I need to find the value of x.
It'd be great if you could explain it, not just give the answer so that I know how to do it in the future. Been trying for hours, some help would be greatly appreciated.
Thanks! Answer by KMST(595) (Show Source):
You can put this solution on YOUR website!If the determinant is zero, the matrix does not have and inverse. (And if the matrix does not have and inverse, then determinant is zero).
The determinant of  is
 -->
Question 552345: Solve the following systems of equations:
x+2y+3z+4s+5t=87
17z-5y+203.5=-(t+5s)
4t+23s-14z+21y+13x=17.5
8y+4z+2s+10t=30x
7.5x+8y+10t=18z+9s+738
I need helping showing work on how to get these answers. Answer by Alan3354(21605) (Show Source):
You can put this solution on YOUR website!Solve the following systems of equations:
x+2y+3z+4s+5t=87
17z-5y+203.5=-(t+5s)
4t+23s-14z+21y+13x=17.5
8y+4z+2s+10t=30x
7.5x+8y+10t=18z+9s+738
I need helping showing work on how to get these answers.
----------------
There are several methods.
There's elimination, eliminating one variable at a time until you solve for 1 of them.
---------
There's inverting the matrix.
-------
I would use determinants if I were to solve it.
A 5 by 5 is very tedious and error prone.
I would use an online solver, just type it in and get the answers. If you have to solve it manually, use a solver to check your work.
Question 551877: use the echelon method to solve:
x+y=16
6x-y=33
cant seem to get it right Answer by KMST(595) (Show Source):
You can put this solution on YOUR website!I have not heard of an echelon method, but I have heard translations of the word echelon from the French into other languages to refer to a strategy to solve systems of linear equations.
You want to keep an equation involving both variables and replace the other equation with a combination of the two where one of the variables has been eliminated.
I would keep  because it's nice and simple and replace the other equation, using the sum of the two
 --> 
The system is now

Even better, we can further simplify, dividing both sides by 7.
 --> 
So we could say that we now have the system

Then substituting we get  --> 
Maybe you were trying to eliminate instead of y to give your modified system the same shape as the one in the book.
We can do that too, if you get points for eliminating variables in alphabetical order.
Just multiply  times -6 to get  and add it to
 to get
 --> 
Then you could simplify it by dividing both sides by -7 to get
Question 551600: I am stuck on how I'm suppose to find the determinant and use the determinant to write an expression. Can you please explain how to find the determinant. Thank you.
Matrix: 4 x
10 15
Question: Write an expression for the value of the determinant of the above matrix.
Answer by jim_thompson5910(21685) (Show Source):
Question 550656: 2x-y=-8
x+3y=6
Using cramer's rule how do you solve for x ? Answer by jim_thompson5910(21685) (Show Source):
Question 550466: X+y+z=9
2x+y+3z=12
x-3y-3z=9
Using the cramer's rule how do you solve for Y ? Answer by jim_thompson5910(21685) (Show Source):
You can put this solution on YOUR website!
| Solved by pluggable solver: Using Cramer's Rule to Solve Systems with 3 variables |

First let . This is the matrix formed by the coefficients of the given system of equations.
Take note that the right hand values of the system are , , and and they are highlighted here:

These values are important as they will be used to replace the columns of the matrix A.
Now let's calculate the the determinant of the matrix A to get . To save space, I'm not showing the calculations for the determinant. However, if you need help with calculating the determinant of the matrix A, check out this solver.
Notation note: denotes the determinant of the matrix A.
---------------------------------------------------------
Now replace the first column of A (that corresponds to the variable 'x') with the values that form the right hand side of the system of equations. We will denote this new matrix (since we're replacing the 'x' column so to speak).

Now compute the determinant of to get . Again, as a space saver, I didn't include the calculations of the determinant. Check out this solver to see how to find this determinant.
To find the first solution, simply divide the determinant of by the determinant of to get: 
So the first solution is 
---------------------------------------------------------
We'll follow the same basic idea to find the other two solutions. Let's reset by letting again (this is the coefficient matrix).
Now replace the second column of A (that corresponds to the variable 'y') with the values that form the right hand side of the system of equations. We will denote this new matrix (since we're replacing the 'y' column in a way).

Now compute the determinant of to get .
To find the second solution, divide the determinant of by the determinant of to get: 
So the second solution is 
---------------------------------------------------------
Let's reset again by letting which is the coefficient matrix.
Replace the third column of A (that corresponds to the variable 'z') with the values that form the right hand side of the system of equations. We will denote this new matrix

Now compute the determinant of to get .
To find the third solution, divide the determinant of by the determinant of to get: 
So the third solution is 
====================================================================================
Final Answer:
So the three solutions are , , and giving the ordered triple (9, 3, -3)
Note: there is a lot of work that is hidden in finding the determinants. Take a look at this 3x3 Determinant Solver to see how to get each determinant.
|
Question 550120: if -3 < f < 4 and -2 < g < 1,then what is the range of possible values of fg. Answer by Edwin McCravy(6936) (Show Source):
You can put this solution on YOUR website!
[Always skip a space before and after < and > so that the computer won't
think it's an HTML tag and delete it.]
If -3 < f < 4 and -2 < g < 1,then what is the range of possible values of fg.
f is defined for these values:
---------o===========================o--------
-5 -4 -3 -2 -1 0 1 2 3 4 5 6
g is defined for these values:
-------------o===========o--------------------
-5 -4 -3 -2 -1 0 1 2 3 4 5 6
When f is very near -3 and g is very near -2, their product
fg is very near +6, so +6 is the least upper bound.
When f is very near 4 and g is very near -2, their product
fg is very near -8, so -8 is the greatest lower bound.
Therefore:
-8 < fg < 6
Edwin
Question 549623: Determine x, y and z for the matrix equation holds:
x,y*0,1=6,13
z,4*3,4=12,13 Answer by Edwin McCravy(6936) (Show Source):
Question 549984: X-2y+3t-2w=0
3x-7y-2t+4w=0
4x+3y+5t+3w=0 Answer by Alan3354(21605) (Show Source):
Question 550088: calculate the cofactor of the element 9 of this determinant:
1 2 3 4
6 7 8 9
-1 -2 -3 -4
-6 -7 -8 -9
Thank you and Merry Christmas Answer by Alan3354(21605) (Show Source):
You can put this solution on YOUR website!1 2 3 4
6 7 8 9
-1 -2 -3 -4
-6 -7 -8 -9
---------------
calculate the cofactor of the element 9 of this determinant:
---------
If you mean where the 9 is, element 2,4:
---
= Det of
1 2 3
-1 -2 -3
-6 -7 -8
-----------
= 1(16-21) - 2(8-18) + 3(7-12) = -5 + 20 - 15
= zero
Question 549763: calculate the cofactor of the element 9 of this determinant
1 2 3 4
6 7 8 9
-1 -2 -3 -4
-6 -7 -8 -9
Help me please. Thank you Answer by mathie123(175) (Show Source):
You can put this solution on YOUR website!Okay so when doing cofactors, think of it as a checkerboard I find helps...
The top left is positive, and then every other changes sign. So that means when finding the cofactor of 9, it will be positive.
From there we take out the row and column that the 9 is in and find the determinant . This means we find the determinent of A(that's what I will call this next matrix)
1 2 3
-1 -2 -3
-6 -7 -8
So we just need to find this determinant.
Well going along the top row, we have
detA=1*detB-2*detC+2*detD
where B=
-2 -3
-7 -8
so detB=(-2*-8)-(-3*-7)=16-21=-5
And C=
-1 -3
-6 -8
So detC=(-1*-8)-(-3*-6)=8-18=-10
and D=
-1 -2
-6 -7
So detD=(-1*-7)-(-2*-6)=7-12=-5
Since detA=cofactor of 9=1*detB-2*detC+2*detD
We can plug in the values we have figured out and solve for this. I will leave this up to you :)
Question 549768: Tell how to determine whether the system has a unique solution, and solve it with the Cramer method:
ax + by = c
dx + ey = f
The answer is: the system has a unique solution if:
delta = ae - bd not equal to 0
and the solution is:
x = (ce - bf) / (ae - bd)
y = (af - cd) / (ae - bd)
How do we explain that?
Answer by Edwin McCravy(6936) (Show Source):
Question 549766: Determine the values of K for which the following system has a nonzero solution:
Kx + Ky = 0 4x + 2Ky = 0
The official answer is K=0 and K=2 but I don't know how to do this. Help me please! Answer by solver91311(12126) (Show Source):
Question 549765: Determine x, y and z for the matrix equation holds:
x,y * 0,1 = 6,13
z,4 * 3,4 = 12,13
Thanks Found 2 solutions by Alan3354, mathie123: Answer by Alan3354(21605) (Show Source): Answer by mathie123(175) (Show Source):
Question 549621: reduce the matrix in the form of low level:
1 -2 3 -1
2 -1 2 2
3 1 2 3
the answer is supposed to be
1 0 0 15/7
0 1 0 -4/7
0 0 1 -10/7
Answer by KMST(595) (Show Source):
You can put this solution on YOUR website! Add (-2) times row 1 to row 2, (-3) times row 1 to row 3 to get
 Combine 3 times row 3 plus (-7) times row 2 and replace row 3 with the result.
 Divide row 3 by 7
 Add 4 times row 3 to row 2
 Divide row 2 by 3
 Add 2 times row 2 and (-3) times row 3 to row 1
Question 549656: Determine the values of K for which the following system has a nonzero solution:
Kx + Ky = 0
4x + 2Ky = 0
The official answer is K=0 and K=2
Help me please! Answer by ankor@dixie-net.com(12700) (Show Source):
You can put this solution on YOUR website!Kx + Ky = 0
4x + 2Ky = 0
:
multiply the 1st equation by 2, and you have
2kx + 2ky = 0
4x + 2ky = 0
-------------------subtraction eliminates 2ky, find k
2kx - 4x + 0 = 0
2kx = 4x
divide both sides by 2x
k = 2
:
I'm not sure how you would get k=0
Question 549625: Inverse the matrix with row reduced echelon form
1, 3, 4
3, -1, 6
4, 2, 1
The answer is supposed to be
-13/90, 1/18, 11/45
7/30, -1/6, 1/15
1/9, //9, -1/9 Answer by solver91311(12126) (Show Source):
|