Investigating a Possible Derivation Error in f(R) Gravity Field Equation

In summary: I am able to obtain the contraction. Considering how many terms there are I really do not believe any of this is a coincidence. 4 and 5 are the same except a few terms have the wrong sign.
  • #1
Dazed&Confused
191
3
In this paper (https://arxiv.org/abs/astro-ph/0603302) the authors derive the field equations for [itex]f(R)[/itex] gravity considering a spherically symmetric and static metric. Now the Ricci scalar only depends on [itex]r[/itex] so you could write [itex]f(R(r)) = g(r)[/itex] for some [itex]g[/itex]. However what it seems the authors have done is in the field equation [tex]
f'(R) R_{\mu \nu} - \tfrac12 f(R) g_{\mu \nu} + g_{\mu \nu} \Box f'(R) - \nabla_\mu \nabla_\nu f'(R) = 0
[/tex]
is rewrite it as [tex]
g'(r) R_{\mu \nu} - \tfrac12 g(r) g_{\mu \nu} + g_{\mu \nu} \Box g'(r) - \nabla_\mu \nabla_\nu g'(r) = 0
[/tex]
rather than [tex]

\frac{g'(r)}{R'(r)}R_{\mu \nu} - \tfrac12 g(r) g_{\mu \nu} + g_{\mu \nu} \Box \left (\frac{g'(r)}{R'(r)} \right) - \nabla_\mu \nabla_\nu \left (\frac{g'(r)}{R'(r)} \right) = 0.
[/tex]

The reason I say this is that when implementing this into Mathematica I first attempted in a field equation function to use an arbitrary [itex]f[/itex] and the Ricci scalar you calculate from the metric as [itex]R[/itex]. This results in equations that were very different and far more complicated, involving fourth derivatives of [itex]B(r)[/itex] which you would expect as the Ricci scalar has second derivatives and the field equations have second derivatives.

On the other hand replacing [itex]R[/itex] with [itex]r[/itex] resulted in equations very similar to their ones (off by signs). The contracted equation was identical. Now I may have made a mistake in the Mathematica notebook (although I did check against a known solution), but it seems too coincidental. At best I think my method wouldn't change fundamentally.

I do not see how it is possible they could make a mistake like this, but I also don't see where I could be wrong so I would appreciate any help.
 
Physics news on Phys.org
  • #2
Dazed&Confused said:
what it seems the authors have done

I don't see what you are describing anywhere in the paper. Can you be more specific about which equations in the paper you are asking about?
 
  • #3
PeterDonis said:
I don't see what you are describing anywhere in the paper. Can you be more specific about which equations in the paper you are asking about?

So to obtain equations 4 and 7 (or something close to them) on Mathematica I had to use use the second form of the equation I gave. Now, this could be because I implemented it incorrectly on Mathematica, however when I used [itex]R[/itex] and not [itex]r[/itex] my equations were far more complicated as I said, so I'm not sure how a change in the code could result in such a huge difference. And as I have said I have checked it. I'm pretty sure that the calculation of the Ricci tensor, scalar, the Christoffel symbols and so on is correct as I have tested this with the Schwartzchild solution. Therefore it is only likely to be in the field equation (which I have looked over many times).
 
  • #4
Dazed&Confused said:
equations 4 and 7

The paper's description of how these equations are derived looks sloppy to me, so I'm not sure how to duplicate it. It says equation 4 is a "combination" of two Ricci tensor components, but it's not clear whether it means the two corresponding components of the field equation, which is what would be correct. Similar remarks apply to equation 5. It says equation 6 is the ##rr## component of the field equation, i.e., of equation 2, but that component was already used in equation 4 so it's not clear what additional information equation 6 is supposed to contain. Equation 7 is just the contraction of equation 2, which should be straightforward, but the notation is unclear to me, in particular the primes--are they derivatives with respect to ##r##, with respect to ##R##, or something else?

This paper does not appear to have been peer-reviewed, so I'm not sure how reliable it is in any case.
 
  • #5
PeterDonis said:
The paper's description of how these equations are derived looks sloppy to me, so I'm not sure how to duplicate it. It says equation 4 is a "combination" of two Ricci tensor components, but it's not clear whether it means the two corresponding components of the field equation, which is what would be correct. Similar remarks apply to equation 5. It says equation 6 is the ##rr## component of the field equation, i.e., of equation 2, but that component was already used in equation 4 so it's not clear what additional information equation 6 is supposed to contain. Equation 7 is just the contraction of equation 2, which should be straightforward, but the notation is unclear to me, in particular the primes--are they derivatives with respect to ##r##, with respect to ##R##, or something else?

This paper does not appear to have been peer-reviewed, so I'm not sure how reliable it is in any case.

I am able to obtain the contraction. Considering how many terms there are I really do not believe any of this is a coincidence. 4 and 5 are the same except a few terms have the wrong sign. I think equation 6 had an extra term for me.

Now the Ricci scalar I got was [tex]
\frac{A'(r) B'(r)}{2 A(r)^2 B(r)}+\frac{2 A'(r)}{r A(r)^2}-\frac{B''(r)}{A(r)
B(r)}+\frac{B'(r)^2}{2 A(r) B(r)^2}-\frac{2 B'(r)}{r A(r) B(r)}-\frac{2}{r^2 A(r)}+\frac{2}{r^2}
[/tex]

so I think that differentiating [itex]f[/itex] of this twice with product and chain rules should give many more terms than they find.
 
  • #6
Dazed&Confused said:
the Ricci scalar I got was

Where are the ##e^{- \lambda(r)}## factors coming from?
 
  • #7
PeterDonis said:
Where are the ##e^{- \lambda(r)}## factors coming from?
Sorry I used the code for something else and forgot to change the way the metric was written. I have corrected it.
 
  • #8
Dazed&Confused said:
differentiating ##f## of this twice

I don't think the paper is doing this. I think it is just computing the Ricci tensor and writing down field equation components (plus contraction, which doesn't involve taking any extra derivatives).
 
  • #9
PeterDonis said:
I don't think the paper is doing this. I think it is just computing the Ricci tensor and writing down field equation components (plus contraction, which doesn't involve taking any extra derivatives).

But don't you have to do this in the right hand side of their equation 2? And their components had [itex]f'''[/itex] and [itex]f''[/itex] terms; wouldn't they have to come from this differentiation?
 
  • #10
Dazed&Confused said:
don't you have to do this in the right hand side of their equation 2?

Not to just write down its components or to contract it, no. Those are the only things that the paper appears to be doing. (But see below.)

Dazed&Confused said:
their components had ##f'''## and ##f''## terms

Do you mean the ##h'## and ##h''## terms? I think those come from contracting the ##h_{; \mu \nu}## term (and from the ##h_{; \lambda}{}^{\lambda}## term, which is already contracted), and then noting that everything is a function of ##r## only, so the only component of the contraction that will be nonzero is ##h_{; r}{}^{r}##. (Note that I'm not entirely sure this reasoning is correct; the only nonzero partial derivatives will be with respect to ##r##, but that in itself does not guarantee that the only nonzero covariant derivatives will be with respect to ##r##; the latter will depend on which connection coefficients are nonzero.) In other words, it's just using the differentiation that already appears in the field equation (2), not putting in any additional differentiation. (It's possible that this is what you meant by "don't you have to do this..." in the first quote above.)
 
  • #11
I don't think I understand what you mean. So the contracted equation is [tex]
f'(R) R - 2 f(R) +3 \Box f'(R)= 0
[/tex]
which when using [itex]f(r)[/itex] not [itex]f(R)[/itex] in my code I get their equation 7.

I mean to write the components don't you need to do [itex] \nabla_\mu \nabla_r f'(R) = \nabla_\mu ( f''(R) \partial_r R ) [/itex] and so on? So what I think they have done is written this as [itex] \nabla_\mu \partial_r f'(r) [/itex] (ignoring non [itex]r[/itex] partial derivatives).
 
  • #12
I don't have time to check the details of the math. The best I can say is, as I said before, this paper does not appear to be peer-reviewed so I don't know how reliable it is.
 
  • #13
Thank you for your help. I've found similar papers and although I don't know if the authors in this paper did this (my equations still don't completely match), there are ways to get the method to work. If you use
[tex]
f'(R) R - 2 f(R) +3 \Box f'(R)= 0
[/tex]
to replace the [itex]f(R)[/itex] term with so that all the [itex]f[/itex]s are differentiated, then you can properly consider it a function of [itex]r[/itex] and everything works out.
 

1. What is f(R) gravity and why is it important to investigate a possible derivation error in its field equation?

F(R) gravity is a modified theory of gravity that attempts to explain the accelerated expansion of the universe. It is important to investigate a possible derivation error in its field equation because any errors in the equation could lead to incorrect predictions and interpretations of observational data, potentially hindering our understanding of the universe.

2. What is the process of investigating a possible derivation error in f(R) gravity field equation?

The process of investigating a possible derivation error in f(R) gravity field equation involves carefully examining the mathematical derivation of the equation and comparing it to other established theories and experimental data. Any discrepancies or inconsistencies must be identified and addressed through further analysis and testing.

3. What are some potential consequences of a derivation error in f(R) gravity field equation?

If a derivation error is found in the f(R) gravity field equation and not corrected, it could lead to incorrect predictions and interpretations of observational data. This could hinder our ability to accurately understand and model the behavior of the universe, potentially leading to incorrect conclusions about the fundamental laws of physics.

4. What are some challenges in investigating a possible derivation error in f(R) gravity field equation?

One of the main challenges in investigating a possible derivation error in f(R) gravity field equation is the complexity of the mathematical equations involved. This requires a high level of expertise and careful analysis to identify any potential errors or inconsistencies. Additionally, it may be difficult to obtain precise and accurate observational data to compare with the theoretical predictions.

5. How can the findings of investigating a possible derivation error in f(R) gravity field equation impact the field of physics?

The findings of investigating a possible derivation error in f(R) gravity field equation can have a significant impact on the field of physics. If a derivation error is found and corrected, it could lead to a better understanding of the fundamental laws of gravity and the universe. It could also potentially open up new avenues for research and advance our knowledge in this area of study.

Similar threads

  • Special and General Relativity
Replies
2
Views
573
  • Special and General Relativity
Replies
1
Views
57
  • Special and General Relativity
Replies
5
Views
1K
  • Special and General Relativity
2
Replies
62
Views
3K
  • Special and General Relativity
Replies
12
Views
1K
  • Special and General Relativity
Replies
1
Views
994
  • Special and General Relativity
Replies
17
Views
1K
  • Special and General Relativity
Replies
1
Views
843
  • Special and General Relativity
Replies
6
Views
1K
  • Special and General Relativity
Replies
6
Views
5K
Back
Top