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.