Given I have the most primitive spherical harmonic, $Y_{00}(\theta, \phi)=\frac{1}{2} \frac{1}{\sqrt{\pi}}$ and I look at one of the three second most primitive ones, e.g. $Y_{11}(\theta, \phi)=-\frac{1}{2} \sqrt{\frac{3}{2 \pi}} \sin \theta e^{i \phi}$, it seems to me that when I look at their plot that I did with Mathematica,
that I would be able to approximate $Y_{11}$ with $Y_{00}$ by putting two of them next to each other.
How can I find an (analytical?) solution that lets me express the higher order spherical harmonic in terms of two lower order spherical harmonics?

Minimize[(SphericalHarmonicY[1, 0, t, p] - l * SphericalHarmonicY[0, 0, t, p])^2, l ∈ Reals]which yielded as optimal result $l=\sqrt{3} \cos \theta$, which let's the term go to $0$. From how I misunderstand this, $l \neq 0$. – ste Apr 04 '22 at 18:18Definitely the $l$ should not be a function if you are approximating by linear combination (constant coefficients!) of functions. Otherwise you could approximate $Y_{11}$ by $Y_{00}$ by the "naive" $\frac{Y_{11}}{Y{00}} Y_{11}$!
– topolosaurus Apr 04 '22 at 18:26