I am trying to solve an equation having degenerate limit of Fermi-Dirac integral.
My code basically is
ClearAll["Global`*"]
FD1[d_, η_] := η^(d + 1)/
Gamma[d + 2] ; (* Defining the Fermi-Dirac integrals in degenerate *)
Solve[FD1[(d-2)/2, ηs] + FD1[(d-2)/2, ηs - vd] ==
2 FD1[(d-2)/2, η0], {ηs}]
I want to solve for $\eta_S$ in terms of $\eta_0$ and $v_d$. Is it possible to solve it using this method? (And maybe expand the solution in terms of $vd$ as $vd$ is small and we can only pick the first few terms)