I have a planar bezier curve of degree $\ n=3 $ with the control points:
$\ p_{o}=[0, 0]^T $
$\ p_{1}=[1, 1]^T $
$\ p_{2}=[2, 1]^T $
$\ p_{3}=[3, 0]^T $
Suppose I have the bernstein polynomials. How can I prove that the curve has axis of symmetry the line $\ x=\frac{3}{2} $ ? I thought I should find the value $\ t_{o} $ for which I get $\ P(t_{o})=\frac{3}{2} $, using the $\ x $ coords of the control points but after that I have no clue.
Plugging your control points (x, y) values to the cubic Bezier formula, you will get
$x(t)=3t$
$y(t)=3t-3t^2$
Therefore, we can rewrite this curve in explicit form as
$y(x)=x-x^2/3$
To prove that the $y(x)$ is symmetric to $x=3/2$, we need to prove that $y(3/2-x)=y(3/2+x)$. This can be easily done after some simple algebra, which I will leave it for your own exercise.