-1

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

user583893
  • 181
  • 9

1 Answers1

0

Assuming k r^2, M/r, a/r to be small of same order, expansion gives nearly the result you're expecting:

grr /. {M -> r eps M/r , k -> 1/r^2 eps k r^2,a -> r  eps a /r } // Simplify  
Normal[Series[%, {eps, 0, 1}]] /. eps -> 1
(*1 + (2 M)/r + (k r^2)/3*)
Ulrich Neumann
  • 53,729
  • 2
  • 23
  • 55