0

I want a simple and intuitive way of solving for $t$ given that $\mathbf{i},\, \mathbf{j},\, \mathbf{k}$ are the unit vectors in $\mathbf{R}^3$. $$ 5 = (2 \mathbf{i} - 3 \mathbf{k} + (\mathbf{i} - \mathbf{j} + \mathbf{k})\, t)\cdot(2 \mathbf{i} + 3 \mathbf{j} + 4 \mathbf{k}) $$ I want to point out that I often get equations provided like this and I am not looking to solve it. I do understand that $(4-12+t\,(2-3-4))=5$ provides me with the answer 13/5. Now I am simply interested in solving this with as little as possible transformation of the expressions.

m_goldberg
  • 107,779
  • 16
  • 103
  • 257
ALEXANDER
  • 1,219
  • 8
  • 21

1 Answers1

3
i = {1, 0, 0}; 
j = {0, 1, 0};
k = {0, 0, 1}; 
    Solve[5 == (2 i - 3 k + (i - j + k) t).(2 i + 3 j + 4 k), t]

(* {{t -> 13/3}} *)

David G. Stork
  • 41,180
  • 3
  • 34
  • 96