The question had already given the matrix A.
$A$ = $\begin{bmatrix} 2 & -2 & -4\\ -1 & 3 & 4\\ 1 & -2 & -3 \end{bmatrix}$
I can't figure out what are $B$ and $C$.
It's obvious that $D = (CB)^T = B^T$ $C^T = B (-C)$
But I don't know how to find $B$ and $C$ from $A = B+C$
I'm honestly lost this. Could somebody help?
Guide:
Use the decomposition
$$A=\frac{A+A^T}{2} + \frac{A-A^T}{2}$$
Let $B=\frac{A+A^T}{2}$ and $C=\frac{A-A^T}{2}$
Edit:
The formula is obtained from $$A=B+C$$ $$A^T=B^T+C^T$$
adding the two equations up, we have
$$B+B^T=2B=A+A^T$$ subtracting the two equations, you can solve for $C$.