MHB Find Matrix A for System Ax=1, 3

  • Thread starter Thread starter evinda
  • Start date Start date
  • Tags Tags
    Matrix
Click For Summary
SUMMARY

The matrix A for the system Ax = [1, 3] is determined to be A = [[1, 0], [3, 0]]. The discussion confirms that for the matrix A to remain fixed regardless of the value of λ, both a12 and a22 must equal 0. The general solution for x is consistent with the derived matrix A, affirming that the solution holds for any λ. The participants validate the calculations and confirm the correctness of the derived matrix.

PREREQUISITES
  • Understanding of linear algebra concepts, particularly matrix operations.
  • Familiarity with the representation of systems of linear equations.
  • Knowledge of parameterized solutions in linear systems.
  • Ability to manipulate and solve matrix equations.
NEXT STEPS
  • Study the properties of linear transformations and their matrix representations.
  • Learn about the implications of parameterization in linear systems.
  • Explore the concept of rank and nullity in relation to matrix solutions.
  • Investigate the role of eigenvalues and eigenvectors in linear algebra.
USEFUL FOR

Students and professionals in mathematics, particularly those focused on linear algebra, as well as educators seeking to understand matrix solutions to linear systems.

evinda
Gold Member
MHB
Messages
3,741
Reaction score
0
Hello! (Wave)

The general solution of the system $Ax=\begin{bmatrix}
1\\
3
\end{bmatrix}$ is $x=\begin{bmatrix}
1\\
0
\end{bmatrix}+ \lambda \begin{bmatrix}
0\\
1
\end{bmatrix}$. I want to find the matrix $A$.

I have done the following so far:

$$x=\begin{bmatrix}
1\\
0
\end{bmatrix}+ \lambda \begin{bmatrix}
0\\
1
\end{bmatrix}=\begin{bmatrix}
1\\
\lambda
\end{bmatrix}.$$

Let $A=\begin{bmatrix}
a_{11} & a_{12}\\
a_{21} & a_{22}
\end{bmatrix}$.$$\begin{bmatrix}
a_{11} & a_{12}\\
a_{21} & a_{22}
\end{bmatrix} \begin{bmatrix}
1\\
\lambda
\end{bmatrix}=\begin{bmatrix}
1\\
3
\end{bmatrix} \Leftrightarrow \begin{bmatrix}
a_{11}+ \lambda a_{12}\\
a_{21}+\lambda a_{22}
\end{bmatrix}=\begin{bmatrix}
1\\
3
\end{bmatrix} \Leftrightarrow \begin{Bmatrix}
a_{11}+\lambda a_{12}=1 \\
a_{21}+\lambda a_{22}=3
\end{Bmatrix} \Leftrightarrow \begin{Bmatrix}
a_{11}=1-\lambda a_{12} \\
a_{21}=3-\lambda a_{22}
\end{Bmatrix}. $$So $A$ is the following matrix:

$$A=\begin{bmatrix}
1-\lambda a_{12} & a_{12}\\
3-\lambda a_{22} & a_{22}
\end{bmatrix}.$$

Is everything right? Can we get more information or is this sufficient? (Thinking)
 
Physics news on Phys.org
Hey evinda!

$A$ is a fixed matrix, isn't it?
It shouldn't depend on $\lambda$ should it? (Worried)

The lambda is only supposed to describe the set of the solutions for $x$, isn't it? (Thinking)
 
Klaas van Aarsen said:
Hey evinda!

$A$ is a fixed matrix, isn't it?
It shouldn't depend on $\lambda$ should it? (Worried)

The lambda is only supposed to describe the set of the solutions for $x$, isn't it? (Thinking)

Oh yes, right... (Thinking) Even if we pick, for example, $\lambda=0$, we do not get a specific matrix $A$.

How can we get further information? (Thinking)
 
evinda said:
Oh yes, right... Even if we pick, for example, $\lambda=0$, we do not get a specific matrix $A$.

How can we get further information?

Since we should get the same $A$ regardless of the value of $\lambda$, I think that for instance $a_{12}$ must be $0$. (Thinking)
 
Klaas van Aarsen said:
Since we should get the same $A$ regardless of the value of $\lambda$, I think that for instance $a_{12}$ must be $0$. (Thinking)

So whichever value $\lambda$ has, we should get the same matrix $A$.

This is only possible when $a_{12}=a_{22}=0$.

Thus, $A=\begin{bmatrix}
1 & 0\\
3 & 0
\end{bmatrix}$.

Is this right? (Thinking)
 
Suppose it is correct, then what are the solutions of $Ax=\begin{bmatrix}1\\3\end{bmatrix}$? (Thinking)
 
Klaas van Aarsen said:
Suppose it is correct, then what are the solutions of $Ax=\begin{bmatrix}1\\3\end{bmatrix}$? (Thinking)

This is wrong, since we would have the following:

$$\begin{bmatrix}
1 & 0\\
3 & 0
\end{bmatrix} \begin{bmatrix}
x_{1} \\
x_{2}
\end{bmatrix}= \begin{bmatrix}
1 \\
3
\end{bmatrix} \Rightarrow x_{1}=1, x_{1}=\frac{1}{3}$$

The solution has to hold for any $\lambda$ and thus we set $a_{12}=0$.

Then $Ax=\begin{bmatrix}
1 \\
3
\end{bmatrix} \Rightarrow \begin{bmatrix}
1 & 0\\
3+\lambda a_{22} & a_{22}
\end{bmatrix} \begin{bmatrix}
x_{1} \\
x_{2}
\end{bmatrix}= \begin{bmatrix}
1 \\
3
\end{bmatrix} \Rightarrow x_1=1, (3+\lambda a_{22}) x_1+ a_{22} x_2=3 \Rightarrow 3+\lambda a_{22}+a_{22} x_2=3 \Rightarrow a_{22} (\lambda+x_2)=0$.

Above we showed that it cannot hold that $a_{22}=0$ and so we get that $x_2=-\lambda$, and this is an acceptable solution, according to the hypothesis.

Thus, $A=\begin{bmatrix}
1 & 0\\
3+\lambda a_{22} & a_{22}\end{bmatrix}$.

Now $A$ again is not fixed, but from $Ax=\begin{bmatrix}
1 \\
3
\end{bmatrix}$ we get that $x_1=1$ and $x_2=-\lambda$.

At the hypothesis, $x_2=\lambda$. But is this the desired solution since $\lambda$ is arbitrary? Or is something wrong? (Thinking)By setting $a_{22}=0$, we get $x_1=\frac{1}{3}$, which is rejected.

Is it right? Could something be improved? (Thinking)
 
evinda said:
This is wrong, since we would have the following:

$$\begin{bmatrix}
1 & 0\\
3 & 0
\end{bmatrix} \begin{bmatrix}
x_{1} \\
x_{2}
\end{bmatrix}= \begin{bmatrix}
1 \\
3
\end{bmatrix} \Rightarrow x_{1}=1, x_{1}=\frac{1}{3}$$

How did you get $x_{1}=\frac{1}{3}$? (Wondering)
 
Klaas van Aarsen said:
How did you get $x_{1}=\frac{1}{3}$? (Wondering)

Oh sorry... We get that $3 \cdot x_1+ 0 \cdot x_2=3 \Rightarrow x_1=1$, and $x_2$ is arbitrary, so it is indeed a solution... (Wasntme)
 
  • #10
evinda said:
Oh sorry... We get that $3 \cdot x_1+ 0 \cdot x_2=3 \Rightarrow x_1=1$, and $x_2$ is arbitrary, so it is indeed a solution...

Ah good. (Whew)

Does the solution for $x$ match the given general solution? (Wondering)
 
  • #11
Klaas van Aarsen said:
Ah good. (Whew)

Does the solution for $x$ match the given general solution? (Wondering)

Yes, it does... (Nod)

So is this sufficient to say that since it has to hold for every $\lambda$, it has to hold that $a_{12}=a_{22}=0$ and so the matrix $A$ is $A=\begin{bmatrix} 1 & 0 \\ 3 & 0 \end{bmatrix}$, since this is confirmed by replacing the matrix that we got at $Ax= \begin{bmatrix} 1 \\ 3 \end{bmatrix}$ ? (Thinking)
 
  • #12
evinda said:
Yes, it does...

So is this sufficient to say that since it has to hold for every $\lambda$, it has to hold that $a_{12}=a_{22}=0$ and so the matrix $A$ is $A=\begin{bmatrix} 1 & 0 \\ 3 & 0 \end{bmatrix}$, since this is confirmed by replacing the matrix that we got at $Ax= \begin{bmatrix} 1 \\ 3 \end{bmatrix}$ ?

Yep. (Nod)

I'd say 'and this is confirmed...' rather than 'since this is confimed...' though. (Emo)
 
  • #13
Klaas van Aarsen said:
Yep. (Nod)

I'd say 'and this is confirmed...' rather than 'since this is confimed...' though. (Emo)

Nice... (Smirk) Thank you very much! (Blush)
 

Similar threads

  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 1 ·
Replies
1
Views
4K
  • · Replies 33 ·
2
Replies
33
Views
2K
Replies
27
Views
2K
  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 24 ·
Replies
24
Views
2K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
Replies
1
Views
2K