By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
Gravitation is the fundamental force of attraction between two objects with mass or energy. This concept is crucial in understanding various phenomena in the universe, from the falling of objects on Earth to the motion of planets and stars. By grasping Newton's Law, Kepler's Laws, satellite motion, and escape velocity, you'll be able to analyze and predict the behavior of celestial bodies and objects on our planet.
Understanding gravitation is essential in many areas, including:
Imagine two objects with mass, such as the Earth and the Moon. According to Newton's Law, they attract each other with a force proportional to their masses and inversely proportional to the square of the distance between them. This force causes the Moon to orbit the Earth. The Moon's motion is an ellipse, with the Earth at one of the two foci.
Here's a simple diagram to illustrate this concept:
+---------------+ | Earth |-----| | (mass M) | | +---------------+ | | v +---------------+ | Moon |-----| | (mass m) | | +---------------+ | | v +---------------+ | Force |-----| | (F = G \* M \* m / r^2) | +---------------+
Let's calculate the escape velocity from the surface of the Earth using the following formula:
v = sqrt(2 \* G \* M / r)
where:
Here's a Python code snippet to calculate the escape velocity:
import math G = 6.67408e-11 # gravitational constant M = 5.97237e24 # mass of the Earth r = 6.37101e6 # radius of the Earth v = math.sqrt(2 * G * M / r) print(v) # output: 11200.0 m/s
The expected outcome is the escape velocity from the surface of the Earth, which is approximately 11,200 m/s.
What is the minimum speed an object must have to escape the gravitational pull of the Earth?
A) 5000 m/s B) 10,000 m/s C) 11,200 m/s D) 20,000 m/s
What is the shape of the orbit of a planet around the Sun according to Kepler's First Law?
A) Circle B) Ellipse C) Parabola D) Hyperbola
What is the force that causes the Moon to orbit the Earth?
A) Gravitational force B) Electromagnetic force C) Strong nuclear force D) Weak nuclear force
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.