I have the following:
\[CapitalSigma] = r^2 + a^2 Cos[\[Theta]]^2;
\[CapitalDelta] = r^2 - 2 M r + a^2 - k/3 r^2 (r^2 + a^2);
grr = \[CapitalSigma]/\[CapitalDelta];
and I want to obtain the expansion of grr up to linear terms in $M/r$ and $k r^2$. What I have done is to employ Series but I could not get the right answer which is
$$1+\frac{2M}{r}-\frac{kr^2}{3}$$
Does anyone have an idea as to what I am missing here? Thanks
a? – Carl Woll Aug 16 '21 at 16:34Limit[grr, r -> Infinity]produces0. – user64494 Aug 16 '21 at 16:50