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
0
votes
1 answer

some questions about the matrix

Some questions about the matrix: 1. If $AB=BA$ that's imply A, B is square matrix? 2. is there equality $\det(2A)=8\det A$ for the matrix $A_{3x3}$? 3. If $\det A=0$ that's imply $Ax=b$ have no solution?
vmahth1
  • 479
0
votes
2 answers

Solve square matrix equation.

So I have to solve this equation. $ XX^T-X^TX=2\begin{pmatrix}0 & 2\\\ 2 & 0\end{pmatrix}$ I wrote matrix $X\ $ as $X=\begin{pmatrix}a & b\\\ c & d\end{pmatrix}\ $ and $ XX^T-X^TX=\begin{pmatrix}b^2-c^2 & ac+bd-ab-cd\\\ ac+bd-ab-cd &…
Kukoz
  • 163
0
votes
1 answer

Unique solution of AX=b

If A is an (n x n)-matrix, under which conditions does the linear system Ax = b have a unique solution? 1-The matrix A is regular. 2-All entries of A are non-zero. 3-The inverse of A exists. 4-rank(A) = n 5-cond(A) = 5 6-A admits a…
Dania
  • 31
0
votes
3 answers

elementary matrix - single element change

I have a question on how to get matrix B from matrix A. A = 1 2 3 4 5 6 7 8 9 10 0 0 1 0 0 B is given, too B = 6 7 0 9 10 1 2 0 4 5 0 0 1 0 0 the tools are swapping, adding and multiplying individual lines to one another.…
HiDuEi
  • 103
0
votes
1 answer

Solving a quadratic matrix equation with transpose matrix

Let $X$ be an unknown matrix and $A$ a known matrix, and suppose the problem is well posed in terms of dimensions. Is there any way to solve the matrix equation $X^TX=A$, analytically or using numerical methods?
0
votes
1 answer

Column of a matrix vs Column vectors

Say I have a matrix, $$\left( \begin{array}{cc} a & d \\ b & e \\ c & f \end{array}\right)$$ I am confused when people say columns, do they mean only the $$\begin{array}{c} a \\ b \\ c \end{array} $$ in the matrix or this vector $$\left(…
William
  • 4,893
0
votes
3 answers

Finding $X$ from $X \left(\begin{smallmatrix} a \\ b \\c \end{smallmatrix}\right) = \left(\begin{smallmatrix} b \\ c \\a \end{smallmatrix}\right)$

I am trying to solve the following matrix equation. $$X \begin{pmatrix} a \\ b \\c \end{pmatrix} = \begin{pmatrix} b \\ c \\a \end{pmatrix}$$ My analysis: $X$ must be 3 by 3 matrix. $X=\begin{pmatrix} b \\ c \\a \end{pmatrix} \begin{pmatrix} a \\ b…
Display Name
  • 2,715
0
votes
0 answers

Existence of a positive solution to a linear system Ax=b when b is not fixed

I'm interested in the existence of a vector $x \in \mathbb{R}^{n, +}$ such that for a matrix $M \in \mathbb{R}^{mxn} $ and a vector $b \in \mathbb{R}^m $, $Mx=b$. I've already looked into Farkas' Lemma but that assumes a fixed $M$ and $b$. The…
user9403
  • 101
0
votes
0 answers

How many solutions to a matrix/vector multiplication?

Suppose I have a square matrix $A$ (e.g., $n\times n$) that multiplies some vector $y$ ($1\times n$) into a vector of the same arrangement $z$ ($1\times n$), such that $Ay = z$, where both $y$ and $z$ are known but not $A$. How many matrices can…
0
votes
1 answer

Solution to factoring sum of matrices

In trying to find an MLE, I have run into the following matrix equation that if feasible would allow me to use least squares to optimize $A$. Suppose that matrices in the set $\{B_k\}$ are square, and not necessarily commutative with $A$. Let…
concat
  • 303
0
votes
2 answers

Matrix form of the system

How to represent it as a matrix? \begin{align} \dfrac{dx}{dt}&=4x+4y-24, \\ \dfrac{dy}{dt}&=-8x+16y+60. \end{align} Or, at least, how to represent a single equation: \begin{align} \dfrac{dx}{dt}&=4x+4y-24, \end{align} ?
Stdugnd4ikbd
  • 205
  • 1
  • 8
0
votes
0 answers

How to find matrix $S$

how to find matrix $\mathbb{S}$ $\mathbb{S}\Lambda\mathbb{S}^T=\begin{bmatrix} 1 & \quad & \ast \\ \quad & \ddots \quad \\ \ast &\quad&1 \end{bmatrix}$ where $ \Lambda=\begin{bmatrix} \mu_1 & 0 & 0&0 \\ 0 &\mu_2&0&0 \\ 0…
0
votes
2 answers

Given an unknown square matrix $H$ and known vectors $x$ and $y$, is it possible to find $H$ if $H\vec{x}=\vec{y}$?

If $H\vec{x}=\vec{y}$ can we find $H$ by inverting $\vec{x}$? No idea how to invert $\vec{x}$ though or if this equation is even solvable.
0
votes
1 answer

C^T M C = D - Proposition

The question is below. Given $C^T M C = D$ for any D a regular matrix in $R^{m, m}$, preferably a diagonal matrix, and M a positive definite matrix in $R^{n, n}$, $ m \neq n$, is it possible to find C? It emerges from theoretical mechanics. I thanks…
0
votes
2 answers

How to determine value of a matrix

I have this matrix. How do i determine the value of k such that the solution is consistent and compute the solution ? 2x + ky + 2z = 0 x − y + z = 1 y − z = k I augment the matrix to get 2+k+2=0 1-1+1=1 0+1-1=k Should i then compute the row reduced…