Questions tagged [matrix-equations]

This tag is for questions related to equations, with matrices as coefficients and unknowns. A matrix equation is an equation in which a variable stands for a matrix .

Definition: Let $~v_1,~v_2,~\cdots~,v_n~ $ and $~b~$ be vectors in $~\mathbb{R^n}~$. Consider the vector equation $$x_1~v_1+x_2~v_2+~\cdots~+x_n~v_n=b~$$This is equivalent to the matrix equation$$~Ax=b~$$

where $~~A=\begin{pmatrix} \cdot & \cdot & \cdots & \cdot \\ v_1 & v_2 & \cdots & v_n \\ \cdot & \cdot & \cdots & \cdot \\ \end{pmatrix};~~ x=\begin{pmatrix} x_1 \\ x_2\\ \cdots\\ x_n \end{pmatrix} ~~\text{and}~~ b=\begin{pmatrix} b_1 \\ b_2\\ \cdots\\ b_n \end{pmatrix}$

Since a matrix equation $ ~AX=B~$ (where $ ~X~$ is a column vector of variables) is equivalent to a system of linear equations, we can use the same methods we have used on systems of linear equations to solve matrix equations. Namely:

$(1.)~~$ Write down the augmented matrix $ ~A \vdots B$.

$(2.)~~$ Row-reduce to a new augmented matrix $~ \overline A \vdots \overline B~$ in row echelon form.

$(3.)~~$ Use this new matrix to write a matrix equation equivalent to the original one.

$(4.)~~$ Use this new, equivalent matrix equation to find the solutions to the original equation.

In mathematics, matrix equation (which is a system of linear equations) is the basis and a fundamental part of linear algebra, a subject which is used in most parts of modern mathematics. Computational algorithms for finding the solutions are an important part of numerical linear algebra, and play a prominent role in engineering, physics, chemistry, computer science, and economics. A system of non-linear equations can often be approximated by a linear system (see linearization), a helpful technique when making a mathematical model or computer simulation of a relatively complex system.

Very often, the coefficients of the equations are real or complex numbers and the solutions are searched in the same set of numbers, but the theory and the algorithms apply for coefficients and solutions in any field. For solutions in an integral domain like the ring of the integers, or in other algebraic structures, other theories have been developed, see Linear equation over a ring. Integer linear programming is a collection of methods for finding the "best" integer solution (when there are many). Gröbner basis theory provides algorithms when coefficients and unknowns are polynomials. Also tropical geometry is an example of linear algebra in a more exotic structure.

4362 questions
1
vote
1 answer

Multiplying a matrix equation by a matrix

$$A=\left[\begin{matrix} 1&2\\ -2&3\\ 1&-1 \end{matrix}\right]{,}\ B=\left[\begin{matrix} 1&-2&-4\\ -1&4&9 \end{matrix}\right]{,}\ b=\left[\begin{matrix} 1\\ 3\\ 5 \end{matrix}\right]$$ $$ BA=I_2$$ Solving the equation  $$A x=b.$$ I start by…
mathslover
  • 1,482
1
vote
2 answers

find matrix element from matrix equation

How to find "x" from this equation $$ \begin{bmatrix} a_1 & a_1^2 & \cdots & a_1^n \\ a_2 & a_2^2 & \cdots & a_2^n \\ \vdots & \vdots& \ddots & \vdots \\ a_m & a_m^2 & \cdots & a_m^n \\ \end{bmatrix} \begin{bmatrix} x \\ b_2\\ …
dimaMS
  • 43
1
vote
3 answers

Solve matrix equation $X = I + A + AXA$

Notations $X$ : p times p positive semi definite, unknown. $I$ : p times p identity matrix, known. $A$ : p times p positive semi definite, known. I want to find X, but it is difficult to me. Thus, instead of exact solution, I used following…
bakgu
  • 55
1
vote
0 answers

Need clarification on Rado's theorem

On Wikipedia page on Rado's theorem, it says that the system $Ax=0$ is said to be $r-regular$ if for every $r$ coloring of the natural numbers, the system has a monochromatic solution. I don't understand what they mean by solution. Here $x$ is a…
user614287
  • 1,147
1
vote
2 answers

Finding A solution to a matrix equation

I have the following problem in a past exam that involves matrix equations: Suppose that $X$is a $2 \times2$ matrix satisfying: $X^{2} = 6X +I$ a) Find the values of $\alpha$ and $\beta$ such that $X^{3} = \alpha X + \beta I$ b) Hence find a…
1
vote
1 answer

solving for scalar involving matrix equations

consider following matrix equation $\boldsymbol{1}^T \Sigma^{-1} ( \bar{\textbf{x}} - n \boldsymbol{1}. c) = 0 $ here $\boldsymbol{1} , \bar{\textbf{x}}$ are vectors of dimension $n \times 1$ and $\Sigma$ is invertible matrix of dimension $n…
manifold
  • 1,485
1
vote
2 answers

Find the Matrix X and Y

$\text { Find the matrix } X \text { and } Y , \text { if } X + Y = \left[ \begin{array} { l l } { 5 } & { 2 } \\ { 0 } & { 9 } \end{array} \right] \text { and } X - Y = \left[ \begin{array} { c c } { 3 } & { 6 } \\ { 0 } & { - 1 } \end{array}…
1
vote
2 answers

How can I express nonlinear function in matrix?

Let the vector $\ell = \begin{pmatrix} \ell_1 \\ \ell_2 \\ \vdots \\ \ell_p \end{pmatrix}$, and the goal is to find a matrix which returns $\psi = \dfrac{\ell_1+\ell_2+\cdots+\ell_q}{\ell_1+\ell_2+\cdots+\ell_p}$, where $q \leq p.$ Is there any…
1
vote
2 answers

Matrices - inverse matrices

Given that A = $\begin{bmatrix} 2 & 1 \\ -5 & -4 \end{bmatrix} $ and B = $\begin{bmatrix} 3 & -1 \\ -1 & 0 \end{bmatrix} $ Find a 2 X 2 matrix C such that $CA= B$ I multiply both sides by $A^{-1}$ Since $A^{-1}A = I $ $ CI = BA^{-1}$ Since $CI =…
1
vote
1 answer

Calculate the matrix equation to find $a, b$ and $c$.

Let $A= \begin{pmatrix} 1 & 0 & 2 \\ 1 & -2 & 0 \\ 0 & 0 & - 3 \\ \end{pmatrix} $ and $I$ be the identity matrix. If $6A^-=aA^2+bA+cI$ where $a,b,c$ are real numbers, then obtain the value of $(a,b,c).$ Options are:…
S.S
  • 1,207
1
vote
0 answers

facing problem on Matrix equation solving

I am facing problem of proving this equation below. How to prove it ? $$({\bf A-BC})^{-1}={\bf A}^{-1}+{\bf A}^{-1} {\bf B}({\bf I+CA}^{-1} {\bf B})^{-1} {\bf CA}^{-1}$$
Bingo Man
  • 11
  • 1
1
vote
1 answer

Matrix over a ring representation

Let $R$ is a ring, $M$ is a $n \times n$ matrix over the ring $R$ (i.e. $M \in M_n(R)$). I need to prove that $\exists M' \in M_n(R)$ such that $M' M = \det M \cdot E$, where $E \in M_n(R)$ is the identity matrix. My proof is the following: If…
Ivan
  • 347
1
vote
0 answers

How to solve the following linear matrix equation $A_1.X.A_2+B_1.X.B_2=C$?

How to solve $A_1 \cdot X \cdot A_2+B_1 \cdot X \cdot B_2=C$ for $X$? I mean, is there a method to convert it into standard form $M \cdot X=N$? Or other way said, is it possible to express $X$ in terms of $A_1$, $A_2$, $B_1$, $B_2$ and $C$? I can…
azerbajdzan
  • 1,166
1
vote
2 answers

rearrange/solve matrix equation?

I'm developing a program that uses a linear transformation $$T=Hi*Hk$$ to do a prediction. Where $Hi$ and $Hk$ are 3x3 invertible matrices. The prediction has an error and I can find a 3x3 correction matrix $Hc$ so that $$T2 = Hc*Hi*Hk$$ now my…
1
vote
1 answer

Square root of a triangular 2*2 matrix in C

Let $A=\begin{pmatrix} a & c \\ 0 & b \end{pmatrix}$ where $a \neq b $ or $c \neq 0$. $a,b,c $ being complex numbers. I have to find every $X \in T_2^+(C) $ such that $X^2=A $. I thing I have proved A admits square root(s) if and only if $a \neq…
Urefeu
  • 31
1 2
3
9 10