Electrostatic Force Exerted Between Two Protons

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 10K views
tjrana0
Messages
3
Reaction score
0
A proton is in a vacuum near the surface of Earth. Where should a second proton be placed so that the electrostatic force it exerts on the first proton balances the weight of the first proton?

F = (k×Abs[q1]×Abs[q2]) / r^2
k = 8.99×10^9 Nm^2/C^2
 
Physics news on Phys.org
The first attempt, I got 1.51911E-14 which was incorrect.
It says "Did you use the Coulomb equation to get the electrostatic force? Do you recall how to calculate the gravitational force on an object (the weight) near Earth's surface?"
I did do all of the above, but with no success.

proton = 1.602176 10^-19;

Solve[1 == (k proton^2)/r^2, r]
{{r -> -1.51911*10^-14}, {r -> 1.51911*10^-14}}
This was the answer that was incorrect.
I thought that the left side of the equation was 1, for some reason, I'm not sure. If it is 0, then the equation is unsolvable. What did I do wrong?
 
tjrana0 said:
The first attempt, I got 1.51911E-14 which was incorrect.
It says "Did you use the Coulomb equation to get the electrostatic force? Do you recall how to calculate the gravitational force on an object (the weight) near Earth's surface?"
I did do all of the above, but with no success.

proton = 1.602176 10^-19;

Solve[1 == (k proton^2)/r^2, r]
{{r -> -1.51911*10^-14}, {r -> 1.51911*10^-14}}
This was the answer that was incorrect.
I thought that the left side of the equation was 1, for some reason, I'm not sure. If it is 0, then the equation is unsolvable. What did I do wrong?

If it is near the surface of the Earth, then a gravitational force acts on it, its weight, mg.

You want the weight to be the same the electric force.

So you need to equate mg to the formula for the electrostatic force.
 
I did 1.6762622*10^-27*9.80665 == 8.99*10^9*1.602*10^-19*1.602*10^-19/r^2
and solved for r and got the right answer! Thank you!

Solve[1.6762622*10^-27*9.80665 ==
8.99*10^9*1.602*10^-19*1.602*10^-19/r^2, r]
{{r -> -0.118471}, {r -> 0.118471}}

r=0.118471m
 
Last edited: