Given a matrix $$A = \left[\begin{matrix} a & b \\ c & d \\ \end{matrix}\right],$$ how do you solve the equations of $$A^2 = \left[\begin{matrix} a^2 + bc & b(a+d) \\ c(a+d) & d^2 + cb \\ \end{matrix}\right] = O_2?$$
2026-04-03 22:59:05.1775257145
How to get matrix $A$ knowing that $A^2 = O_2$?
42 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
Your system is$$\left\{\begin{array}{l}a^2+bc=0\\b(a+d)=0\\c(a+d)=0\\d^2+bc=0.\end{array}\right.$$If $a=-d$, this system becomes simply $a^2+bc=0$.
If $d\neq-a$, then $b=c=0$. And then it follows from the first and fourth equation that $a=d=0$ too.
So, the solutions of your matrix equation are the matrices of the form $\left[\begin{smallmatrix}a&b\\c&-a\end{smallmatrix}\right]$ such that $a^2+bc=0$.