answersLogoWhite

0

F is force and it is equal to the gravitational constant times the mass of the first object times the mass of the second object divided by the distance between the two squared.

User Avatar

Monboo

Lvl 2
3y ago

What else can I help you with?

Related Questions

what does law of universal gravitational?

What is?? F = G m1 m2 / d2


What does the universal law of gravitation?

What is?? F = G m1 m2 / d2


The circling of one object about another?

this is orbit, the equation that is usually used is Fg = (G)(M1)(M2)/R^2 Fg = gravitational force G = 6.67 * 10^-11 M1 = mass 1 M2 = mass2 R = Radius of planet


What description of a scientific law that uses a math equation?

Law of Gravity: Fg = G(m1*m2)/r^2


What is the sun total gravity?

Depends on the mass of the object and the distance it is from the sun. Fg=(G*m1*m2)/(d^2)


Two objects attract each other gravitationally with a force of 2.5x10-10 N when they are 25m apart Their total mass is 4.0kg find their individual masses?

Alright, so basically you're given: m1+m2=4.0kg, r=25m, Fg=2.5*10-10N We know that Fg=Gm1m2/r2 Using the fact that m1+m2=4.0kg, we know that m2=4.0kg-m1 So: Fg=Gm1(4.0kg-m1)/r2 =G(m1(4.0)-m12)/r2 So: (-G/r2)m12+(4G/r2)m1-Fg=0 Here we can use the quadratic formula to solve for m1 Once you have m1, just use m1+m2=4.0kg to find m2 I'll leave the actual number crunching to you. Hope this helps!


What is the difference between M1 and M2?

What is the difference between M1 and M2?


What represents the correct relationship between the slopes of perpendicular lines?

If the slopes are m1 and m2 then m1*m2 = -1 or m2 = -1/m1.


Strength of gravity units?

Classic calculation for force of gravity (f) between two masses is: f = (G*m1*m2) / d2 and the units are newtons.


If the m1 equals SA and m3 equals 23 what is the m?

if(m1>m2) f=m1; s=(m2>m3)?m1!m3 what its meaning of this?


What happens to the gravitational force when the distance between the 2 objects is trippled?

The force, written as an equation, is:F = G (m1)(m2) / r2, whereF is the Force between the massesG is the gravitational constant (~= 6.674 x 10-11 N m2/kg2)m1 is one of the massesm2 is the other massr is the distance between the masses (center to center)Take the formula, and solve for r (I'll show the steps): Fold = G (m1)(m2) / r2.(r2)(Fold)= G (m1)(m2)(r2)= G (m1)(m2) / (Fold)r= √ [ G (m1)(m2) / (Fold) ]Plug the formula into itself, but remember, r = 3r (it tripled).Fnew= G (m1)(m2) / (3r)2.Fnew= G (m1)(m2) /(3√ [ G (m1)(m2) / (Fold) ])2.Fnew=G (m1)(m2)/(32G (m1)(m2) / (Fold) )


How do you write c code for ternary search?

this procedure work for ternary search int tsearch(int *a,int i,int j,int k) { int m1,m2,len; len = j - i + 1 ; m1=i + (int)floor((float)(len))/3; m2=i + (int)ceil((float)(len))/3; if(k==a[m1]) { printf("\nno found at %d",m1); return m1; } else if(k==a[m2]) { printf("\nno found at %d",m2); return m2; } if(len!= 0) { if(k<a[m1]) return(tsearch(a,i,m1-1,k)); if(k>a[m2]) return(tsearch(a,m2+1,j,k)); } else return -1 ; }