Algebra problem in a force question

  • Thread starter Thread starter tony873004
  • Start date Start date
  • Tags Tags
    Algebra Force
Click For Summary

Homework Help Overview

The discussion revolves around an algebra problem related to gravitational forces near a black hole, specifically comparing the tidal force experienced near a 1 Solar mass black hole to the gravitational force at Earth's surface. The original poster provides equations involving the gravitational forces at different distances from the black hole and seeks to isolate a variable representing distance.

Discussion Character

  • Mathematical reasoning, Problem interpretation, Assumption checking

Approaches and Questions Raised

  • Participants explore algebraic manipulation of gravitational force equations, questioning how to isolate the distance variable. Some suggest multiplying both sides by a common denominator to form a fourth-order equation, while others propose using approximations based on the assumption that certain terms are small.

Discussion Status

The discussion includes various attempts to manipulate the equations, with some participants expressing uncertainty about their algebra skills. There is acknowledgment of a computational method that yields a numerical answer, but the focus remains on understanding the algebraic approach. One participant claims to have resolved the issue by simplifying the equation.

Contextual Notes

Participants note that the mass of the original poster is not relevant to the final answer, and there is an emphasis on maintaining clarity regarding the variables used in the equations. The original poster also mentions that they have a known numerical answer from a programming approach, which adds context to their algebraic inquiry.

tony873004
Science Advisor
Gold Member
Messages
1,753
Reaction score
143
I've got this boiled down to an algebra problem.

At what distance from a 1 Solar mass black hole must you be so that the tidal force experienced by my body is equal to the gravitational force at Earth's surface.

Assume I am 2 meters, and 70 kg (the 70 kg's will drop out later, but they ask for force, so I'll include them for now)

[tex]F_{g, Earth}=\frac{GM_{Earth}m_{me}}{R_{Earth}^2}[/tex]

[tex]F_{g, Black Hole,my feet}=\frac{GM_{Black Hole}m_{me}}{d_{black hole,my feet}^2}[/tex]

[tex]F_{g, Black Hole, my head}=\frac{GM_{Black Hole}m_{me}}{d_{black hole,my head}^2}[/tex]

[tex]F_{g, Earth}=F_{g, Black Hole, my head}-F_{g, Black Hole, my head}[/tex]

[tex]\frac{GM_{Earth}m_{me}}{R_{Earth}^2}= \frac{GM_{Black Hole}m_{me}}{d_{black hole,my feet}^2}-\frac{GM_{Black Hole}m_{me}}{d_{black hole,my head}^2}[/tex]

The G's and [tex]m_{me}[/tex]'s cancel

[tex]\frac{M_{Earth}}{R_{Earth}^2}= \frac{M_{Black Hole}}{d_{black hole,my feet}^2}-\frac{M_{Black Hole}}{d_{black hole,my head}^2}[/tex]

My head is 2 meters further from the black hole than my head, so:

[tex]\frac{M_{Earth}}{R_{Earth}^2}= \frac{M_{Black Hole}}{d_{black hole,my feet}^2}-\frac{M_{Black Hole}}{(d_{black hole,my feet}-2m)^2}[/tex]

Clean this up a little. Mass of Earth and radius of Earth are known, so let's just call the left side of the equation X for now.

[tex]x=\frac{M}{d^2}-\frac{M}{(d-2m)^2}[/tex]

Here's where I get stuck How do I isolate d ?

Here's my effort, but this is probably wrong:

[tex]x=\frac{M(d-2m)^2} {d^2(d-2m)^2} -\frac{Md^2} {d^2(d-2m)^2}[/tex]

[tex]x=\frac{M(d-2m)^2 - Md^2} {d^2(d-2m)^2}[/tex]

[tex]x=\frac{M(d-2m)^2 - Md^2} {d^2 (d-2m) (d-2m)}[/tex]

I'm just shuffling numbers around and getting nowhere :zzz:
 
Physics news on Phys.org
tony873004 said:
[tex]x=\frac{M}{d^2}-\frac{M}{(d-2m)^2}[/tex]
If you really want to solve it exactly, multiply both sides by [itex]d^2(d-2m)^2[/itex] and then get a fourth order equation in d.

But... assuming that 2m << d, use an approximation. Several ways to do it. One way is to write [itex](d - 2m)^2 = d^2(1 - 2m/d)^2[/itex], then use a binomial expansion of that last term, ignoring higher powers of (2m/d), since they are really small.

An even better way is to realize that for small changes in x, [itex]\Delta f = (df/dx) \Delta x[/itex].
 
I still don't get it. I just don't remember how to do this kind of algebra :cry:
btw... the 2m can just be written as 2 because m is not a variable, it means 2 meters.

I know the answer is 3781979 meters because I did it this way with programming, which is ok to get credit on the problem, but I want to know how to do it the algebra way.

Code:
Private Sub btnCompute_Click()
Dim G As Double, Mearth As Double, Mbh As Double, Mme As Double
Dim Rearth As Double, Rbh As Double, Hme As Double
Dim Fearth As Double, Fbhhead As Double, Fbhfeet As Double
Dim Fdifference As Double

sstep = Val(txtStep) 'Amount black hole’s radius will be increased with each step
Rbh = Val(txtRbh) 'starting value for the radius of the Black Hole
G = 0.00000000006673 ' Gravitational Constant
Rearth = 6371000 ' Radius of the Earth in meters
Mearth = 5.97E+24 ' Mass of the Earth in kilograms
Mbh = 1.9891E+30 ' Mass of the black hole in kilograms (1 Solar Mass)
Hme = 2 ' My height in meters
Mme = 70 ' My mass in kilograms (value is irrelavant to final answer)
Fearth = (G * Mearth * Mme / Rearth ^ 2) ' Compute Force at Earth's Surface
txtFearth = Fearth ' Display Force at Earth's surface

Do
    Rbh = Rbh + sstep ' Increment the black hole's radius by 1 step size
    Fbhfeet = (G * Mbh * Mme / Rbh ^ 2) ' Force of black hole at my feet
    Fbhhead = (G * Mbh * Mme / (Rbh + Hme) ^ 2) ' Force of black hole at my head
    Fdifference = Fbhfeet - Fbhhead ' Difference between these 2 forces
Loop Until Fdifference < Fearth ' Keep going until you get me an answer

txtDifference = Fdifference ' Display the black hole forces difference
txtRbhComputed = Rbh ' Display the distance from the black hole that I must stay
End Sub
 
I figured it out. But I had to keep the highest power and eliminate the rest.
 

Similar threads

Replies
3
Views
2K
Replies
5
Views
1K
  • · Replies 97 ·
4
Replies
97
Views
15K
Replies
6
Views
2K
Replies
4
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
Replies
6
Views
2K
Replies
6
Views
2K