SOLUTION: Hi. I am trying to make a determinant problem for someone I am tutoring. I would like something similar to the following problem that requires factoring in the result, the answer t

Algebra ->  Matrices-and-determiminant -> SOLUTION: Hi. I am trying to make a determinant problem for someone I am tutoring. I would like something similar to the following problem that requires factoring in the result, the answer t      Log On


   



Question 198943: Hi. I am trying to make a determinant problem for someone I am tutoring. I would like something similar to the following problem that requires factoring in the result, the answer to this problem is 5/3 and -1. I am not sure how to reverse a problem to make the answer something similar to this example. Thanks to anyone who can help.
Here is the example I am trying to simulate:
abs%28matrix%283%2C3%2C4%2Cx%2C-2%2C-x%2C-3%2C1%2C-6%2C2%2C3%29%29 = -3

Answer by Edwin McCravy(20056) About Me  (Show Source):
You can put this solution on YOUR website!
Hi. I am trying to make a determinant problem for someone I am tutoring. I would like something similar to the following problem that requires factoring in the result, the answer to this problem is 5/3 and -1. I am not sure how to reverse a problem to make the answer something similar to this example. Thanks to anyone who can help.
Here is the example I am trying to simulate:
abs%28matrix%283%2C3%2C4%2Cx%2C-2%2C-x%2C-3%2C1%2C-6%2C2%2C3%29%29 = -3

Here's how to make as many of them as you like.  

1. Choose any integer that you want to be one of
the values of x, the solution to the problem.

I'll arbitrarily choose x=2

2. Choose any two multiples of that number, positive or negative. 

I'll choose two arbitrary multiples of 2, as 6 and 8.

3. Make up any determinant that contains those two multiples such
that neither is in the same row or column as the other.  Evaluate 
the determinant.

abs%28matrix%283%2C3%2C3%2C1%2C8%2C2%2C-5%2C4%2C-1%2C6%2C-2%29%29 = 14

Notice I put the 6 in the 3rd row 2nd column position
and the 8 in the 1st row 3rd column position, and I
evaluated the determinant as 14.

Since x=2, now all I have to do is replace the 6 by 2x and 
the 8 by 4x

abs%28matrix%283%2C3%2C3%2C1%2C4x%2C2%2C-5%2C4%2C-1%2C2x%2C-2%29%29 = 14

If you evaluate the determinant you get:

24x%5E2-56x%2B30=14
24x%5E2-56x%2B16=0
Divide through by 8
3x%5E2-7x%2B2=0
%28x-2%29%283x-1%29=0

So there are two solutions,

x=2 and x=1%2F3

You can even have more fun with that determinant because 
it has a 4 and a -2.  The 4 is 2x and the -2 is -x.
So you can replace them too.  Like this: 

abs%28matrix%283%2C3%2C3%2C1%2C4x%2C2%2C-5%2C2x%2C-1%2C3x%2C-x%29%29 = 14

However make sure you don't have x's so as to give a 
third degree equation. Always leave one row or column 
without any unknowns. I chose to leave the first column 
without unknowns,  Notice if had put an x where the
2 is in the 2nd row 1st column, it would have resulted in
a cubic equation.

But as it is, the equation comes out

6x%5E2-5x-14=0
%28x-2%29%286x%2B7%29=0

So there are two solutions here, x=2 and x+=+-7%2F6   

It's interesting that even though x=2 was the same in
both problems, the other solution was not the same as the
other solution in the first problem. 

Edwin