So, I have a linear equation, and I need to solve for some variables in said equation. However, since I don't know much about matrices, I don't know how to solve for the variables. The equation in question is the one from the Wikipedia page on perspective projection. It is as follows:
$$\begin{bmatrix}d_{x}\\d_{y}\\d_{z}\end{bmatrix}=\begin{bmatrix}1&0&0\\0&\cos\Theta_{x}&-\sin\Theta_{x}\\0&\sin\Theta_{x}&\cos\Theta_{x}\end{bmatrix}\begin{bmatrix}\cos\Theta_{y}&0&\sin\Theta_{y}\\0&1&0\\-\sin\Theta_{y}&0&\cos\Theta_{y}\end{bmatrix}\begin{bmatrix}\cos\Theta_{z}&-\sin\Theta_{z}&0\\\sin\Theta_{z}&\cos\Theta_{z}&0\\0&0&1\end{bmatrix}\left(\begin{bmatrix}a_{x}\\a_{y}\\a_{z}\end{bmatrix}-\begin{bmatrix}c_{x}\\c_{y}\\c_{z}\end{bmatrix}\right)$$
I know $a$, $c$, and $d$, but I need to find $\theta$. Let's say that $a$ is (5,0,0), $c$ is (10,0,0), and $d$ is (10,5,0). How, then, would I solve for $\theta$?