I need to design an analytical function that looks like this (See figure bellow). The idea is to control the angles "a" at the beginning and at the end. If the function depends on x (any kind of parameter, angle, value in [-1,1], etc.), we should have f(x) symmetric to f(-x) towards the line y=-x+1 (orange line). I mean, I should be able to build in some ways with the symmetric function. For instance, we have x^2 symmetric to x^(1/2).
I can build this function with a Bezier curve, but I need an analytical form that would give something close to the Bezier solution.
Thanks :)

A solution is a quadratic Bezier curve (a parabola), with control points $(0, 0)$, $(p, 1-p)$ and $(1, 1)$. The initial slope of this curve is $\frac{dy}{dx}=\frac{1-p}{p}=\tan(a+45°)$.
UPDATE: a more direct approach to the parabola.
Rotate the axis by $45°$ clockwise to make the axis of the parabola vertical. The equation is $v=\lambda u(\sqrt2-u)$, with the initial slope $\frac{dv}{du}=\lambda\sqrt2=\tan a$.
Then counter rotate using $u=\frac{x+y}{\sqrt2}$ and $v=\frac{y-x}{\sqrt2}$:
$$2(y-x)=\tan a(x+y)(2-x-y),$$
$$(\tan a)\ y^2\ +2(1-\tan a\ (1-x))\ y-(2x-\tan a\ x(2-x))=0.$$