For an equilateral triangle ABC of side $a$ vertex A is always moving in the direction of vertex B, which is always moving the direction of vertex C, which is always moving in the direction of vertex A. The modulus of their "velocity" is a constant. When and where do they converge.
Attempt. Found the "when" using a physics style approach by "fixing the frame" on one of the vertices. (From this frame, other two vertex are moving towards origin in a straight line and components of their speed along this line can be used to find when the three meet at origin) For the "where" it is difficult using above approach as this is some kind of rotating and shrinking triangle which is difficult to translate.
@all Apologies for bumping this question. I wished to give an answer the bounty but it wont let me until the next 23 hours. For the record: I am not seeking new answers.
Update: A cool example of PSTricks package of $\LaTeX$, for anyone who finds this question later.

Link to code (a .tex file)
And using Pgf/TikZ


This is easier than a general case without symmetries. Fix the origin as the center of the triangle. Define a vector field on all of $\mathbb R^2$ such that, at every point $p,$ the vector points at the rotation of $p$ by exactly 120 degrees, taking a consistent rotation direction, say counterclockwise. The easiest vector length would also seem to be the length of the edge being copied, which is then a constant multiple of the distance of $p$ from the origin. Finally, find the integral curve through your favorite vertex on the original triangle.
EDIT: $$ \left( \begin{array}{c} \dot{x} \\ \dot{y} \end{array} \right) \; = \; \left( \begin{array}{cc} \frac{-3}{2} & \frac{-\sqrt{3}}{2} \\ \frac{\sqrt{3}}{2} & \frac{-3}{2} \end{array} \right) \left( \begin{array}{c} x \\ y \end{array} \right) $$
With eigenvalues $\frac{-3}{2} \pm \frac{i \sqrt 3}{2},$ what we do is diagonalize (or, if necessary, the Jordan normal form), at which point the esxponential of the matrix multiplied by the variable $t$ is evident. Then change back, the result is called the fundamental matrix. Often called $\Phi,$ it solves $\Phi' = A \Phi,$ where, in this case, $$ A \; = \; \left( \begin{array}{cc} \frac{-3}{2} & \frac{-\sqrt{3}}{2} \\ \frac{\sqrt{3}}{2} & \frac{-3}{2} \end{array} \right) $$
I get the fundamental matrix as
$$ \Phi(t) \; = \; e^{-3t/2} \left( \begin{array}{cc} \cos \left( \frac{\sqrt{3}}{2} \; t\right) & - \sin \left( \frac{\sqrt{3}}{2} \; t\right) \\ \sin \left( \frac{\sqrt{3}}{2} \; t\right) & \cos \left( \frac{\sqrt{3}}{2} \; t\right) \end{array} \right) , $$
Any solution of the system is found by starting with a constant column vector, and the curve is $\Phi$ multiplied by that column vector, and goes through that at $t=0.$
For those who have not taken a differential equations course, we have the equation
$$ \Phi(t) = e^{tA}= I + t A + \frac{t^2 A^2}{2} + \frac{t^3 A^3}{6} + \cdots$$
As you can see, any such curve actually never reaches the origin, and wraps around the origin infinitely many times. I am beginning to think that this is the same as the logarithmic spiral answer, in which case I have shown you the rudiments of solving the relevant ODE system.