Questions tagged [matrices]

Ask Question

For any topic related to matrices. This includes: systems of linear equations, eigenvalues and eigenvectors (diagonalization, triangularization), determinant, trace, characteristic polynomial, adjugate and adjoint, transpose, Jordan normal form, matrix algorithms (e.g. LU, Gauss elimination, SVD, QR), invariant factors, quadratic forms, etc. For questions specifically concerning matrix equations, use the (matrix-equations) tag.

51,445 questions
1 vote 0 answers 16 views

How to perform multiple rotations by direction vectors?

[I'm not sure whether I make the right choice of wording.] I am looking for some performant algorithm for a rotation of multiple points in $\mathbb{R}^2$ (and maybe also $\mathbb{R}^3$ with one ... user avatar Quasimodo's clone
  • 111
1 vote 0 answers 25 views

Matrix norm (submultiplicative constant)

Is it true that we can always find some $k>0$ such that $||XY||\leq k||X||\cdot||Y||$ holds? $||\cdot|| $ is any matrix norm. I haven't learn functional analysis yet. user avatar sally wang
  • 11
2 votes 0 answers 48 views

Eigenvalues of block matrix $\begin{pmatrix} A & B \\ B &-A \end{pmatrix}$

It is known that the set of eigenvalues of the following block matrix $$ C = \begin{pmatrix} A & B \\ B & A \end{pmatrix} $$ is the union of the eigenvalues of the matrices $A + B$ and $A - B$.... user avatar QMath
  • 337
0 votes 0 answers 18 views

Using Euler Angles to change grain orientations

I am looking to manually orientate the direction of grains to an angle that I choose. I have grains that are characterised by Euler angles using Bunge notation. Let me take an arbitrary orientated ... user avatar Div
  • 11
0 votes 0 answers 7 views

Boundednesss for norm of a matrix

Let $A$ be a $n\times n$ matrix with some $n\in\mathbb{N}$. Then $\left\|A\right\|\le L$ if and only if $$-LI_n\preceq A\preceq LI_n,$$ where $X\preceq Y$ means that $Y-X$ is a positive semidefinite ... user avatar Dat Ba Tran
  • 101
0 votes 0 answers 20 views

is the mix of convex and linear functions always convex function?

I want to prove that the following composed function $g \circ L$ is always (strictly) convex : \begin{alignat*}{3} &g&&(t&&) && =-\log(1-e^{-t}) \qquad && \text{... user avatar Artashes
  • 21
1 vote 1 answer 33 views

Cholesky decomposition question

I am studying for a exam and I thought about practicing the Cholesky decomposition. If a matrix $A = A^{T}$ , the main diagonal of $A$ has only positive elements and in every row the absolute value of ... user avatar Miss Mulan
  • 113
3 votes 1 answer 58 views

What does $\mbox{diag}(A)$ denote?

Let $A$ be a $2 \times 2$ matrix. What does $\mbox{diag}(A)$ denote? It can't refer to a block-diagonal matrix, so does it basically mean $A$ with anything but the diagonal set to $0$? user avatar zareami10
  • 113
0 votes 0 answers 26 views

Sum of squared symmetric matrices is the identity matrix

Let $A_1, A_2,\ldots,A_n$ be $m\times m$ real symmetric matrices such that \begin{equation} A_1^2 + A_2^2 + \dots + A_n^2 = \alpha I_m. \end{equation} Can we prove that $A_i^2 = \alpha_i B_i$, where $... user avatar Rareş Mircea
  • 1
1 vote 0 answers 10 views

Complexity of SVD computation assuming knowing left singular vectors and singular values

Suppose we know the left singular vectors $\mathbf{U}$ and singular values $\mathbf{\Sigma}$ for the matrix $\mathbf{A}$ with SVD decomposition $\mathbf{U}\mathbf{\Sigma}\mathbf{V}^{\mathrm{H}}$, then ... user avatar Math_Y
  • 69
1 vote 0 answers 34 views

Can we generate a block skew-symmetric matrix by a operator

Suppose we have following speical block matrix $$ X = \begin{bmatrix} 0 & X_3 & -X_2\\ -X_3& 0& X_1\\ X_2 &-X_1 &0 \end{bmatrix} $$ where $X1,X2,X3 \in R^{n \times n}$ and not ... user avatar Kim
  • 21
0 votes 1 answer 34 views

Is this definition for a strictly triangular system from my textbook incorrect?

Definition from my textbook (Linear Algebra with Applications by Steven J. Leon, 9edg): A system is said to be in strict triangular form if , in the $k$th equation, the coefficients of the first $k-1$... user avatar Kalcifer
  • 315
0 votes 0 answers 22 views

Matrix equation with constraints

I have to estimate the square $n\times n$ matrix $A$ and I know that it must solve the equation: $$(BA)^* + (BA) = \Omega$$ where $B$ is also a $n\times n$ matrix and where $\Omega$ is a Hermitian $n\... user avatar PC1
  • 669
0 votes 1 answer 20 views

Upper bound on $\|A^{-1}\|_{\infty}$ for $A$ with unit length columns.

Consider a non-singular $A \in \mathbb{R}^{n\times n}$ with $\|\mathrm{col}_i(A)\| = 1$ ($i \in \{1,\ldots,n\}$), where $\mathrm{col}_i(A)$ is the $i$th column of $A$ and $\|\cdot\|$ is the Euclidean ... user avatar Ryan
  • 581
0 votes 1 answer 23 views

Finding the positive projection in the frobenius norm

I am trying to find the positive projection in the frobenius norm of a real matrix. Consider the following matrix $\hat{Z}$: \begin{bmatrix}1&2&0\\0&5&0\\0&8&9\end{bmatrix} I ... user avatar thePhantom
  • 3

15 30 50 per page123453430

You Might Also Like