I have $3$ equation with $3$ unknowns $(i, j, k)$ while $a, b, c, d, e$ and $f$ are known.
$$ai + bj + ck = 1\\ di + ej + fk = 1\\ i^2 + j^2 + k^2 = 1$$
This type of equation set is typical for unit vector solving problems. So I need to find the vector $(i, j, k).$
How can I solve this?
Solve the first equation for $i$. Substitute this in the second equation. Solve the second equation for $j$. Substitute this in the expression for $i$. Substitute both $i$ and $j$ in the third equation. Then you are left with a quadratic equation in $k$. Solve the quadratic equation for $k$. This gives you $i$, $j$, $k$.