System of equations Finding A

bines

New member
Joined
May 26, 2015
Messages
4
Hello everyone,

B=150,200,150

The final solution is,
X=100
Y=200
Z=250

How do I find the A,
A is the 3*3 matrix of x,y and z coefficients.

Thank you!
 
Hi ishuda ,

The original system of equations is,

3X-Y-Z = 100

-X+2.5Y-Z = 200

-X-Y-4Z = 250

The result is ,

X=150
Y=200
Z=150

I want to build a system of equations , when I change his results as B, and B, should be the result, what happens coefficients in A, different coefficients should be original.
In other words, I am looking for them to coefficients the right to get this result ,

X=100
Y=200
Z=250

Thank you!
 
Hi ishuda ,

The original system of equations is,

3X-Y-Z = 100

-X+2.5Y-Z = 200

-X-Y-4Z = 250

The result is ,

X=150
Y=200
Z=150

I want to build a system of equations , when I change his results as B, and B, should be the result, what happens coefficients in A, different coefficients should be original.
In other words, I am looking for them to coefficients the right to get this result ,

X=100
Y=200
Z=250

Thank you!
I'm still not sure I understand but I'll take a shot at it. You can write the original equation as
x A = b
where
x = (x, y, z)
A = \(\displaystyle \begin{pmatrix} 3& -1& -1\\ -1& 2.5& -1\\ -1& -1& -4\end{pmatrix}\)
and
b = (100, 200, 250)
You say the solution to this system of equations is
x = (150, 200, 150)
as indeed it is. However, you would like to know the value of b if x were changed to
x = (100, 200, 250).
Is this correct?

If so and if you know how to multiply a row vector times a matrix, the above equation should show you how to get the solution.
 
Hi Ishuda ,

A small mistake, +4z should be in place -4z , in the third equation

I know the vector multiply, but I am looking for a set of equations of A,
What is the correct equations system, A, when
B=(150,200,150) and
the solution to this system of equations is
x = (100, 200, 250)

Is there a way to do this?
I can do this with Excel - Solver, but not sure it's right.

Thank you!
 
Hi Ishuda ,

A small mistake, +4z should be in place -4z , in the third equation

I know the vector multiply, but I am looking for a set of equations of A,
What is the correct equations system, A, when
B=(150,200,150) and
the solution to this system of equations is
x = (100, 200, 250)

Is there a way to do this?
I can do this with Excel - Solver, but not sure it's right.

Thank you!

The matrix A is not unique. You can find tri-diagonal matrix by using

aii = bi/xi

Rest of the components of A in this case is assumed to be 0.
 
Hi Subhotosh Khan,

Can you give, how it works, or model in Excel, for example ?

I'm really a novice matrices !

Thank you!
 
Top