Learn about the mass and density of Earth with detailed explanations, FAQs, and MCQs. Essential study material for JEE, NEET, and CBSE Class 11 exams.
Mass of Earth
The mass of the Earth is determined using Newton’s law of gravitation and Cavendish’s experiment, where:
g = GM/R2
M = gR2/G
Where,
M = Mass of Earth
g = Acceleration due to gravity (9.81 m/s²)
R = Radius of Earth (~6,371 km)
G = Gravitational constant (6.674 × 10⁻¹¹ N·m²/kg²)
Put constant values in the equation, we get,
M = 5.972 × 10²⁴ kg
Density of Earth
Earth is assumed to be a uniform solid sphere with a mean density (ρ). We know that,
Density = mass/volume
Then, ρ = M/[4/3 πR3]
M = ρ × [4/3 πR3]
We know that g = GM/R2.
On substituting the values of M, we get,
g = 4/3 [πρRG]
At any distance ‘r’ from the centre of the earth,
g = 4/3 [πρRG]
Density of Earth is given by
ρ = 3g/4πGR
g = Acceleration due to gravity (9.81 m/s²)
R = Radius of Earth (~6,371 km)
G = Gravitational constant (6.674 × 10⁻¹¹ N·m²/kg²)
Put constant values in the equation, we get the average density of Earth is
ρ = 5,515 kg/m3
Important Question-Answers on Mass and Density of Earth
Q1: What is the mass of the Earth?
A: The mass of the Earth is approximately 5.972 × 10²⁴ kg.
Q2: What is the density of the Earth?
A: The average density of Earth is 5,515 kg/m³.
Q3: How is the mass of the Earth determined?
A: The mass of the Earth is determined using Newton’s law of gravitation and Cavendish’s experiment, where:
M = gR2/G
Where,
M = Mass of Earth
g = Acceleration due to gravity (9.81 m/s²)
R = Radius of Earth (~6,371 km)
G = Gravitational constant (6.674 × 10⁻¹¹ N·m²/kg²)
Q4: Why is the Earth’s density not uniform?
A: The Earth consists of different layers (crust, mantle, and core) with varying densities. The core, mainly composed of iron and nickel, is denser than the outer layers.
Q5: What is the significance of Earth’s density in planetary science?
A: The Earth’s density helps in understanding its internal structure, composition, and gravitational effects on surrounding celestial bodies.
FAQs on Mass and Density of Earth
Q1: What is the heaviest layer of the Earth?
A: The inner core is the heaviest and densest layer, primarily composed of iron and nickel.
Q2: How does Earth’s density compare to other planets?
A: Earth has the highest density among the terrestrial planets (Mercury, Venus, Earth, and Mars).
Q3: Can the density of Earth change over time?
A: Yes, due to geological processes like plate tectonics, volcanic activities, and core cooling, slight changes in density may occur.
Q4: How does Earth’s mass affect gravity?
A: Earth’s mass determines the gravitational pull, which influences atmospheric retention, ocean tides, and planetary motion.
Multiple-Choice Questions (MCQs) with Answers
Q1: What is the approximate mass of the Earth?
A) 6.972 × 10²⁴ kg B) 5.972 × 10²⁴ kg C) 4.972 × 10²⁴ kg D) 7.972 × 10²⁴ kg
✅ Answer: B) 5.972 × 10²⁴ kg Explanation: The mass of the Earth has been calculated based on gravitational laws and astronomical observations.
Q2: Which layer of the Earth has the highest density?
A) Crust B) Mantle C) Outer Core D) Inner Core
✅ Answer: D) Inner Core Explanation: The inner core, composed mainly of iron and nickel, has the highest density among all layers.
Q3: Which formula is used to determine the mass of the Earth?
A) F = ma B) M = gR²/G C) P = m/V D) KE = ½mv²
✅ Answer: B) M = gR²/G Explanation: This formula is derived from Newton’s law of gravitation and helps in calculating Earth’s mass.
const quizData = [
{ question: “What is the approximate mass of Earth?”,
options: [“5.972 × 10^24 kg”, “1.989 × 10^30 kg”, “7.348 × 10^22 kg”, “6.674 × 10^-11 kg”],
correct: 0,
explanation: “The mass of Earth is approximately 5.972 × 10^24 kg.” },
{ question: “What is the average density of Earth?”,
options: [“3.93 g/cm³”, “5.51 g/cm³”, “7.87 g/cm³”, “1.33 g/cm³”],
correct: 1,
explanation: “Earth’s average density is 5.51 g/cm³, making it the densest planet in the Solar System.” },
{ question: “Which layer of Earth has the highest density?”,
options: [“Crust”, “Mantle”, “Outer Core”, “Inner Core”],
correct: 3,
explanation: “The inner core has the highest density due to immense pressure and composition of iron and nickel.” },
{ question: “Which force is responsible for Earth’s spherical shape?”,
options: [“Magnetic Force”, “Friction”, “Gravity”, “Centrifugal Force”],
correct: 2,
explanation: “Gravity pulls matter toward the center, giving Earth its roughly spherical shape.” },
{ question: “Which element is most abundant in Earth’s mass?”,
options: [“Oxygen”, “Silicon”, “Iron”, “Nickel”],
correct: 2,
explanation: “Iron is the most abundant element by mass, largely found in Earth’s core.” },
{ question: “Which layer contributes most to Earth’s mass?”,
options: [“Crust”, “Mantle”, “Outer Core”, “Inner Core”],
correct: 1,
explanation: “The mantle contributes most to Earth’s mass as it is the largest layer.” },
{ question: “What is Earth’s gravitational acceleration at sea level?”,
options: [“9.81 m/s²”, “10.5 m/s²”, “8.92 m/s²”, “6.67 m/s²”],
correct: 0,
explanation: “Earth’s gravitational acceleration is approximately 9.81 m/s² at sea level.” },
{ question: “What is the main reason for Earth’s density being higher than water?”,
options: [“Air pressure”, “Presence of heavy elements”, “Rotation of Earth”, “Moon’s influence”],
correct: 1,
explanation: “Earth’s density is high because it contains heavy elements like iron and nickel.” },
{ question: “What is the estimated density of Earth’s core?”,
options: [“3 g/cm³”, “5 g/cm³”, “10-13 g/cm³”, “20 g/cm³”],
correct: 2,
explanation: “Earth’s core has a density between 10-13 g/cm³ due to its iron composition and extreme pressure.” },
{ question: “Which planet has a density close to Earth’s?”,
options: [“Mars”, “Venus”, “Jupiter”, “Saturn”],
correct: 1,
explanation: “Venus has a density similar to Earth’s at about 5.24 g/cm³.” }
];let quizContainer = document.getElementById(“quiz”);
let scoreContainer = document.getElementById(“score”);
let score = 0;quizData.forEach((q, index) => {
let questionElem = document.createElement(“div”);
questionElem.classList.add(“question”);
questionElem.innerHTML = `${index + 1}. ${q.question}`;
quizContainer.appendChild(questionElem);let optionsElem = document.createElement(“div”);
optionsElem.classList.add(“options”);
q.options.forEach((option, optIndex) => {
let button = document.createElement(“button”);
button.innerHTML = option;
button.onclick = function () {
if (optIndex === q.correct) {
button.classList.add(“correct”);
score++;
} else {
button.classList.add(“wrong”);
}
explanationElem.style.display = “block”;
};
optionsElem.appendChild(button);
});
let explanationElem = document.createElement(“div”);
explanationElem.classList.add(“explanation”);
explanationElem.innerHTML = q.explanation;
optionsElem.appendChild(explanationElem);
quizContainer.appendChild(optionsElem);
});let scoreButton = document.createElement(“button”);
scoreButton.innerHTML = “Show Score”;
scoreButton.onclick = function () {
scoreContainer.innerHTML = `Your Score: ${score} / ${quizData.length}`;
};
quizContainer.appendChild(scoreButton);
Conclusion
Understanding the mass and density of Earth is crucial for gravitational studies, geophysics, and planetary science. For detailed notes, solved examples, and practice questions, buy the complete study material at Anand Technical Publishers.
Buy Complete Study Material
Get comprehensive study material for JEE, NEET, and CBSE Board Class 11 Exams at Anand Technical Publishers.