Given a general parabola in parametric form $$\big(at^2+bt, ct^2+dt\big)$$ what are the equations of the axis of symmetry, as well as the tangent at the vertex?
Using standard but rather tedious algebraic expansion, the following can be worked out:
Cartesian form:
(by eliminating $t$)
$$(ax-cy)^2=(bc-ad)(dy-bx)$$
Axis of symmetry:
(using the solution here)
$$ax-cy+\frac {(ab+cd)(bc-ad)}{2(a^2+c^2)}=0$$
Tangent at vertex:
(by first deriving vertex coordinates as intersection between axis of symmetry and parabola, and then forming equation of line through it with slope perpendicular to axis of symmetry)
$$cx+ay-\frac {(ab+cd)^2}{4(a^2+c^2)}=0$$
Desmos implementation here.
However it would be interesting to see if there are other methods of arriving at these results quickly and elegantly, perhaps by using vector or matrix methods. Any other insights, geometric or otherwise, which can be derived from the final form would also be very helpful. The terms look very much like dot products of vectors as well as matrix determinants.
Define points $P$ and $Q$ at $t=p$ and $t=q$. Invoking the calculus, we know that tangent vectors at $P$ and $Q$ are $$P^\prime=(2ap+b,2cp+d) \qquad Q^\prime = (2aq+b,2cq+d)$$ Now, suppose $P^\prime$ and $Q^\prime$ are orthogonal. Then $$0 = P^\prime \cdot Q^\prime = b^2 + d^2 + 2 (p+q)( a b + c d ) + 4 (a^2+c^2) p q$$ so that $$q = -\frac{b^2 + d^2 + 2 p(a b +cd)}{2 ( a b + cd + 2p( a^2 + c^2))}$$ unless the denominator is zero. That is, if $$p = -\frac{ab+cd}{2(a^2+c^2)} \tag{$\star$}$$ then there's no vector $Q^\prime$ orthogonal to $P^\prime$. (Ignoring possible degeneracies in the parameters $a$, $b$, $c$, $d$,) This can only happen if $P$ is the vertex.
So, substituting $p$ from $(\star)$ into $P$ and $P^\prime$ gives the vertex and tangent-vector-at-vertex for the parabola. The equations for the axis of symmetry and tangent line are straightforward to derive from this information. The cleanup remains a bit tedious, but the work is complete. $\square$