This was an edit on a previos question that I don't think anyone saw. In the previous question, I did algebra to an equation with vectors $\vec u, \vec v \in \mathbb R^2$ where I got a function equal to $\frac{\vec u}{\vec v}$ and was trying to figure out if this was defined or sensible in anyway.
Tinkering around with with the problem, I tried out this simplified problem (I dropped the units for readability, so assume velocities are all meters per second, distances are all meters, and time is all seconds):
Object $q$ at time $t = 0 $ is located at $x(0) = \begin{bmatrix} 0 \\0 \end{bmatrix}$ and traveling at a velocity $\dot x = \begin{bmatrix} 10 \\12 \end{bmatrix}$. At what time does $x(t) = \begin{bmatrix} 5 \\6 \end{bmatrix}$?
Our function is:
$$ x(t) = x(0) + \dot x(t) $$
Plugging in the knowns:
$$\begin{bmatrix} 0 \\0 \end{bmatrix} + \begin{bmatrix} 10 \\12 \end{bmatrix}t = \begin{bmatrix} 5 \\6 \end{bmatrix}$$
We can get rid of the zero vector:
$$\begin{bmatrix} 10 \\12 \end{bmatrix}t = \begin{bmatrix} 5 \\6 \end{bmatrix}$$
Now to isolate the $t$, we do the following operation:
$$\begin{bmatrix} \frac{1}{10} && \frac{1}{12} \end{bmatrix}\begin{bmatrix} 10 \\12 \end{bmatrix}t = \begin{bmatrix} \frac{1}{10} && \frac{1}{12} \end{bmatrix}\begin{bmatrix} 5 \\6 \end{bmatrix} $$
$$2t = 1$$
$$t = \frac{1}{2}$$
All well and good and what we expect. It takes half a second with that velocity vector to reach the final position.
The trouble comes if we make $\dot x = \begin{bmatrix} 10 \\ 13 \end{bmatrix}$. If that is our velocity vector starting from the origin, we miss $x(t) = \begin{bmatrix} 5 \\ 6 \end{bmatrix}$.
Nonetheless, I wanted to see what would happen if I blindly applied the above algebra to this equation that should have no solutions.
$$\begin{bmatrix} 10 \\13 \end{bmatrix}t = \begin{bmatrix} 5 \\6 \end{bmatrix}$$ $$\begin{bmatrix} \frac{1}{10} && \frac{1}{13} \end{bmatrix}\begin{bmatrix} 10 \\13 \end{bmatrix}t = \begin{bmatrix} \frac{1}{10} && \frac{1}{13} \end{bmatrix}\begin{bmatrix} 5 \\6 \end{bmatrix} $$
$$2t = \frac{1}{2} + \frac{6}{13} = \frac{25}{26}$$
$$t = \frac{25}{52}$$
But:
$$\frac{25}{52} \begin{bmatrix} 10 \\13 \end{bmatrix} \approx \begin{bmatrix} 4.81 \\6.25 \end{bmatrix} \ne \begin{bmatrix} 5 \\6 \end{bmatrix}$$
What just happened? My understanding from a bit of the math I've learned in quantum mechanics and doing vector operations in Hilbert spaces was that:
$$ | \psi \rangle = | \phi \rangle \implies \langle \xi | \psi \rangle = \langle \xi | \phi \rangle $$
Given that these are real vectors and I don't need to complex conjugate them to get their inner products, it seems like this should hold. And it seems like I got (maybe) the point in time that is closest to the target position vector, but it still nonetheless seems like this should be a contradiction. What happing?
