Science, asked by HYPERTREX, 6 months ago

Mathematically show that the mass

of the object, being attracted by the earth, does not affect the acceleration due to gravity.​

Answers

Answered by ravaanmaharajnavs189
1

Answer:

Explanation:

Probably the most famous force of all is gravity. We humans on earth think of gravity as an apple hitting Isaac Newton on the head. Gravity means that stuff falls down. But this is only our experience of gravity. In truth, just as the earth pulls the apple towards it due to a gravitational force, the apple pulls the earth as well. The thing is, the earth is just so massive that it overwhelms all the gravity interactions of every other object on the planet. Every object with mass exerts a gravitational force on every other object. And there is a formula for calculating the strengths of these forces, as depicted in the diagram below:

Diagram of gravitational forces between two spheres

Diagram of gravitational forces between two spheres

Let’s examine this formula a bit more closely.

F refers to the gravitational force, the vector we ultimately want to compute and pass into our applyForce() function.

G is the universal gravitational constant, which in our world equals 6.67428 x 10^-11 meters cubed per kilogram per second squared. This is a pretty important number if your name is Isaac Newton or Albert Einstein. It’s not an important number if you are a ProcessingJS programmer. Again, it’s a constant that we can use to make the forces in our world weaker or stronger. Just making it equal to one and ignoring it isn’t such a terrible choice either.

m_1m  

1

​  

m, start subscript, 1, end subscript and m_2m  

2

​  

m, start subscript, 2, end subscript are the masses of objects 1 and 2. As we saw with Newton’s second law (\vec{F} = M\vec{A}  

F

=M  

A

F, with, vector, on top, equals, M, A, with, vector, on top), mass is also something we could choose to ignore. After all, shapes drawn on the screen don’t actually have a physical mass. However, if we keep these values, we can create more interesting simulations in which “bigger” objects exert a stronger gravitational force than smaller ones.

\hat{r}  

r

^

r, with, hat, on top refers to the unit vector pointing from object 1 to object 2. As we’ll see in a moment, we can compute this direction vector by subtracting the location of one object from the other.

r^2r  

2

r, squared refers to the distance between the two objects squared. Let’s take a moment to think about this a bit more. With everything on the top of the formula—G, m_1m  

1

​  

m, start subscript, 1, end subscript, m_2m  

2

​  

m, start subscript, 2, end subscript—the bigger its value, the stronger the force. Big mass, big force. Big G, big force. Now, when we divide by something, we have the opposite. The strength of the force is inversely proportional to the distance squared. The farther away an object is, the weaker the force; the closer, the stronger.

Hopefully by now the formula makes some sense to us. We’ve looked at a diagram and dissected the individual components of the formula. Now it’s time to figure out how we translate the math into ProcessingJS code. Let’s make the following assumptions.

We have two objects, and:

Each object has a PVector location: location1 and location2.

Each object has a numeric mass: mass1 and mass2.

There is a numeric variable G for the universal gravitational constant.

Given these assumptions, we want to compute a PVector force, the force of gravity. We’ll do it in two parts. First, we’ll compute the direction of the force \hat{r}  

r

^

r, with, hat, on top in the formula above. Second, we’ll calculate the strength of the force according to the masses and distance.

Remember when we figured out how to have an object accelerate towards the mouse? We're going to use the same logic here.

A vector is the difference between two points. To make a vector that pointed from the circle to the mouse, we simply subtracted one point from another:

var dir = PVector.sub(mouse, location);

In our case, the direction of the attraction force that object 1 exerts on object 2 is equal to:

var dir = PVector.sub(location1, location2);

Don’t forget that since we want a unit vector, a vector that tells us about direction only, we’ll need to normalize the vector after subtracting the locations:

dir.normalize();

OK, we’ve got the direction of the force. Now we just need to compute the magnitude and scale the vector accordingly.

var m = (G * mass1 * mass2) / (distance * distance);

dir.mult(m);

The only problem is that we don’t know the distance. G, mass1, and mass2 were all givens, but we’ll need to actually compute distance before the above code will work. Didn’t we just make a vector that points all the way from one location to another? Wouldn’t the length of that vector be the distance between two objects?

Answered by Anonymous
1

app ko brainly nahi brain chaye

Similar questions