Understanding the difference between inertial mass and gravitational mass is crucial for students preparing for JEE, NEET, and CBSE Class 11 Physics exams. This topic is fundamental in Newtonian Mechanics and helps in solving problems related to motion and gravitation.
📌 Comparison Between Inertial and Gravitational Mass
Q1: What is Inertial Mass?
✅ Answer: Inertial mass is the resistance a body offers to a change in its state of motion when a force is applied. It is measured using Newton’s Second Law of Motion (F=ma).
Q2: What is Gravitational Mass?
✅ Answer: Gravitational mass determines the gravitational force exerted by or experienced by a body. It is measured using Newton’s Law of Gravitation (F = GMm/R2).
📌 Key Differences Between Inertial and Gravitational Mass
Property
Inertial Mass
Gravitational Mass
Definition
Resistance to motion change
Ability to attract or be attracted by gravity
Measurement Method
Using Newton’s Second Law (F=ma)
Using Newton’s Law of Gravitation (F = GMm/R2)
Unit
Kilogram (kg)
Kilogram (kg)
Depends on
Applied force
Gravitational attraction
Measuring Instrument
Inertial balance
Spring balance
📌 Comparison Between Mass and Weight
Q3: What is the Difference Between Mass and Weight?
✅ Answer:
Mass (m)
Weight (W)
Mass is the quantity of matter in a body.
Weight is the force due to gravity acting on a body.
Independent of gravitational acceleration (g).
Varies with gravitational acceleration (g).
SI Unit: Kilogram (kg).
SI Unit: Newton (N).
Scalar quantity.
Vector quantity.
Measured using a physical balance.
Measured using a spring balance.
📌 Multiple-Choice Questions (MCQs) with Answers
Q1: Inertial mass of a body is determined by:
🔘 (A) Newton’s Law of Gravitation 🔘 (B) Newton’s Second Law of Motion 🔘 (C) Kepler’s Laws 🔘 (D) None of these
✅ Correct Answer:(B) Newton’s Second Law of Motion 💡 Explanation: Inertial mass is determined by the equation F=maF = maF=ma, which comes from Newton’s Second Law of Motion.
Q2: The weight of an object is maximum at:
🔘 (A) Equator 🔘 (B) Poles 🔘 (C) Center of the Earth 🔘 (D) In Space
✅ Correct Answer:(B) Poles 💡 Explanation: The value of ggg is highest at the poles, so weight is maximum there.
Q3: Which instrument is used to measure gravitational mass?
✅ Correct Answer:(C) Spring balance 💡 Explanation: Spring balance measures weight, which depends on gravitational mass.
📌 FAQs on Inertial and Gravitational Mass
Q1: Is inertial mass always equal to gravitational mass?
✅ Answer: Yes, in all experiments conducted so far, inertial mass has been found to be equal to gravitational mass. This is a key assumption in Einstein’s General Theory of Relativity.
Q2: Can weight be zero?
✅ Answer: Yes, at infinity (far away from any gravitational source) and at the center of the Earth, weight becomes zero because g=0g = 0g=0.
Q3: Why does an astronaut feel weightless in space?
✅ Answer: In space, an astronaut is in free fall, experiencing zero net force, which creates a sensation of weightlessness.
const quizData = [
{
question: “What is inertial mass?”,
options: [“Mass that resists change in motion”, “Mass that attracts other objects”, “Mass affected by gravity”, “Mass measured using a spring balance”],
correct: 0,
explanation: “Inertial mass is the resistance to change in motion, measured using Newton’s Second Law (F=ma).”
},
{
question: “Which law is used to measure gravitational mass?”,
options: [“Newton’s First Law”, “Newton’s Second Law”, “Newton’s Law of Gravitation”, “Kepler’s Law”],
correct: 2,
explanation: “Gravitational mass is measured using Newton’s Law of Gravitation (F = G * m1 * m2 / r²).”
},
{
question: “What is the unit of mass?”,
options: [“Newton”, “Kilogram”, “Joule”, “Pascal”],
correct: 1,
explanation: “Mass is measured in kilograms (kg), whereas weight is measured in Newtons (N).”
},
{
question: “Which instrument is used to measure gravitational mass?”,
options: [“Physical balance”, “Inertial balance”, “Spring balance”, “Digital scale”],
correct: 2,
explanation: “Spring balance measures weight, which depends on gravitational mass.”
},
{
question: “Where is the weight of an object maximum?”,
options: [“Equator”, “Poles”, “Center of the Earth”, “Space”],
correct: 1,
explanation: “Weight is maximum at the poles because gravity (g) is highest there.”
},
{
question: “Why does an astronaut feel weightless in space?”,
options: [“No gravity exists”, “They are in free fall”, “Mass becomes zero”, “They are outside Earth’s atmosphere”],
correct: 1,
explanation: “Astronauts experience weightlessness because they are in free fall, even though gravity is still acting on them.”
},
{
question: “Which quantity remains constant irrespective of location?”,
options: [“Mass”, “Weight”, “Gravitational Force”, “Acceleration”],
correct: 0,
explanation: “Mass remains constant, but weight varies with gravitational acceleration.”
},
{
question: “What is the relation between inertial and gravitational mass?”,
options: [“Always equal”, “Always different”, “Gravitational mass is twice inertial mass”, “No relation”],
correct: 0,
explanation: “Experiments show that inertial and gravitational mass are always equal.”
},
{
question: “What happens to weight at the center of the Earth?”,
options: [“Doubles”, “Becomes zero”, “Remains constant”, “Increases slightly”],
correct: 1,
explanation: “Weight becomes zero at the Earth’s center because gravitational force cancels out.”
},
{
question: “What is the SI unit of weight?”,
options: [“Kilogram”, “Newton”, “Joule”, “Watt”],
correct: 1,
explanation: “Weight is a force and is measured in Newtons (N).”
}
];let currentQuestion = 0;
let score = 0;const questionNumberEl = document.getElementById(“question-number”);
const questionEl = document.getElementById(“question”);
const optionsEl = document.getElementById(“options”);
const explanationEl = document.getElementById(“explanation”);
const nextButton = document.getElementById(“next-btn”);
const scoreEl = document.getElementById(“score”);function loadQuestion() {
const q = quizData[currentQuestion];
questionNumberEl.textContent = `Question ${currentQuestion + 1} of ${quizData.length}`;
questionEl.textContent = q.question;
optionsEl.innerHTML = “”;
explanationEl.textContent = “”;
q.options.forEach((option, index) => {
const button = document.createElement(“button”);
button.textContent = option;
button.onclick = () => checkAnswer(index);
optionsEl.appendChild(button);
});
nextButton.style.display = “none”;
}function checkAnswer(selected) {
const q = quizData[currentQuestion];
const buttons = optionsEl.getElementsByTagName(“button”);if (selected === q.correct) {
buttons[selected].classList.add(“correct”);
score++;
} else {
buttons[selected].classList.add(“incorrect”);
}
buttons[q.correct].classList.add(“correct”);
explanationEl.textContent = `✅ ${q.explanation}`;
nextButton.style.display = “block”;
}nextButton.onclick = () => {
currentQuestion++;
if (currentQuestion < quizData.length) {
loadQuestion();
} else {
scoreEl.textContent = `Your Score: ${score} / ${quizData.length}`;
scoreEl.style.display = "block";
document.getElementById("quiz").style.display = "none";
}
};loadQuestion();
📌 Conclusion
Understanding the differences between inertial and gravitational mass, as well as mass vs weight, is essential for competitive exams like JEE and NEET. For in-depth study material, buy complete notes from Anand Classes.