Binding Energy & Angular Momentum of Satellite | JEE NEET & CBSE Class 11 Study Material, MCQS, Quiz, FAQS

⭐⭐⭐✩ (3.8/5 from 204 reviews)

Binding Energy of a Satellite

Binding energy (EB) is the energy required to be given to the satellite to escape the gravitational pull of the earth. It is numerically equal to the negative of the total energy possessed by the satellite.

\(\begin{array}{l}\text{Binding energy of a satellite}=\frac{GMm}{2r}\end{array} \)

The binding energy of a system of two bodies is the amount of minimum energy required to separate them by infinite distance, or it is simply the amount of energy required to make the potential energy of the system equal to zero, which is numerically equal to the kinetic energy of the body under motion.

Angular Momentum of a Satellite

When a satellite of mass ‘m’ is orbiting with an angular speed on the orbital path of radius ‘r’, its angular momentum is given by

L = mvr

L = m(rω)r

\(\begin{array}{l}L=m{{r}^{2}}\omega\end{array} \).

We know that

\(\begin{array}{l}\omega =\frac{2\pi }{T}\end{array} \)

, substituting this in the above equation, we get

\(\begin{array}{l}L=m{{r}^{2}}\frac{2\pi }{T}\end{array} \)

\(\begin{array}{l}\text{Using}\ T=\frac{2\pi }{\sqrt{GM}}{{\left( r \right)}^{{}^{3}/{}_{2}}},\ \text{we get};\end{array} \)

\(\begin{array}{l}L=m\sqrt{GMr}\end{array} \)

From the above equation, it is clear that the angular momentum of a satellite depends on both the mass of a satellite and the mass of earth. It also depends upon the radius of the orbit of the satellite.


Question-Answers-Binding Energy & Angular Momentum of a Satellite

Q1: What is Binding Energy of a Satellite?

A: Binding energy is the minimum energy required to remove a satellite from the gravitational influence of a planet or celestial body. It is given by:

\(\begin{array}{l}\text{Binding energy of a satellite}=\frac{GMm}{2r}\end{array} \)

where:

  • G = Gravitational constant
  • M = Mass of the planet
  • m = Mass of the satellite
  • R = Radius of orbit

Q2: Why is Binding Energy Negative?

A: The binding energy is negative because the satellite is bound to the planet due to gravitational attraction. A negative energy indicates that external energy must be supplied to remove the satellite from orbit.

Q3: What is the Angular Momentum of a Satellite?

A: Angular momentum (L) of a satellite is given by: L=mvR where:

  • m = Mass of the satellite
  • v = Orbital velocity
  • R = Radius of orbit

Using the relation for orbital velocity, Angular momentum can be rewritten as:

\(\begin{array}{l}L=m\sqrt{GMr}\end{array} \)


Multiple Choice Questions (MCQs)-Binding Energy & Angular Momentum of a Satellite

Q1: Which of the following statements about binding energy is correct?

A) It is the energy required to move a satellite closer to the planet.
B) It is the energy required to remove the satellite from its orbit.
C) It is the total energy of the satellite.
D) It is always positive.

Answer: B) It is the energy required to remove the satellite from its orbit.
Explanation: Binding energy represents the energy needed to overcome gravitational attraction and move the satellite to infinity.

Q2: If the mass of the satellite doubles, how does its angular momentum change?

A) It remains the same.
B) It doubles.
C) It becomes half.
D) It becomes four times.

Answer: B) It doubles.
Explanation: Angular momentum is given by L=mGMRL = m \sqrt{GM R}. If mm doubles, LL also doubles.

Q3: What happens to the binding energy of a satellite if the radius of its orbit increases?

A) It increases.
B) It decreases.
C) It remains the same.
D) It becomes zero.

Answer: B) It decreases.
Explanation: Binding energy is inversely proportional to the orbital radius. As the radius increases, the gravitational attraction weakens, requiring less energy to escape.


FAQs-Binding Energy & Angular Momentum of a Satellite

Q1: What is the significance of binding energy in satellite motion?

A: Binding energy determines how stable a satellite’s orbit is. A higher binding energy means the satellite is more strongly bound to the planet.

Q2: Can a satellite have zero binding energy?

A: Yes, if a satellite has enough energy to reach escape velocity, its total energy becomes zero, meaning it is no longer bound.

Q3: Why is angular momentum conserved in satellite motion?

A: In the absence of external torques, angular momentum remains constant due to the law of conservation of angular momentum.


Test Your Knowledge

Binding Energy & Angular Momentum Quiz body { margin: 0; padding: 0; font-family: Arial, sans-serif; } .quiz-container { width: 90%; max-width: 600px; margin: 20px auto; padding: 20px; border: 1px solid #ddd; border-radius: 8px; box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.1); } .question { font-size: 18px; margin-bottom: 10px; } .options label { display: block; margin-bottom: 5px; cursor: pointer; } .btn { display: block; width: 100%; padding: 10px; background: #28a745; color: white; border: none; border-radius: 5px; cursor: pointer; margin-top: 10px; } .btn:hover { background: #218838; } .result { margin-top: 20px; font-size: 18px; font-weight: bold; } .explanation { color: #007bff; font-size: 14px; margin-top: 5px; }

Binding Energy & Angular Momentum Quiz

const questions = [ { question: “What is the binding energy of a satellite?”, options: [ “The energy required to move a satellite closer to the planet.”, “The energy required to remove a satellite from its orbit.”, “The total energy of the satellite.”, “It is always positive.” ], answer: 1, explanation: “Binding energy is the energy required to remove a satellite from its orbit due to gravitational attraction.” }, { question: “Why is binding energy negative?”, options: [ “Because the satellite is losing mass.”, “Because the satellite is bound due to gravitational attraction.”, “Because kinetic energy is always negative.”, “Because energy is being added to the system.” ], answer: 1, explanation: “Binding energy is negative as it represents the gravitational attraction that keeps the satellite in orbit.” }, { question: “How is angular momentum of a satellite calculated?”, options: [ “L = m v R”, “L = m g R”, “L = GMm/R”, “L = v/mR” ], answer: 0, explanation: “Angular momentum (L) is given by L = m v R, where m is mass, v is velocity, and R is orbital radius.” }, { question: “If the mass of a satellite doubles, how does its angular momentum change?”, options: [ “It remains the same.”, “It doubles.”, “It becomes half.”, “It becomes four times.” ], answer: 1, explanation: “Angular momentum is directly proportional to mass, so doubling the mass doubles the angular momentum.” }, { question: “What happens to binding energy if the orbit radius increases?”, options: [ “It increases.”, “It decreases.”, “It remains the same.”, “It becomes zero.” ], answer: 1, explanation: “Binding energy decreases as orbit radius increases because gravitational attraction weakens.” } ];function loadQuiz() { const quizDiv = document.getElementById(“quiz”); quizDiv.innerHTML = “”; questions.forEach((q, index) => { let questionHtml = `
Q${index + 1}: ${q.question}
`; q.options.forEach((option, optIndex) => { questionHtml += `
`; }); quizDiv.innerHTML += questionHtml; }); }function submitQuiz() { let score = 0; let resultHtml = “”; questions.forEach((q, index) => { const selected = document.querySelector(`input[name=’q${index}’]:checked`); if (selected) { const selectedIndex = parseInt(selected.value); if (selectedIndex === q.answer) { score++; resultHtml += `

Q${index + 1}: Correct! ✅
${q.explanation}

`; } else { resultHtml += `

Q${index + 1}: Incorrect ❌
Correct Answer: ${q.options[q.answer]}
${q.explanation}

`; } } else { resultHtml += `

Q${index + 1}: Not Answered ❌

`; } }); document.getElementById(“result”).innerHTML = `

Your Score: ${score} / ${questions.length}

` + resultHtml; }loadQuiz();

Buy Complete Study Material

For comprehensive study material on JEE, NEET, and CBSE Board Class 11 Exams, visit Anand Classes. Get access to expertly curated notes, MCQs, and detailed explanations.


Proprietor: NIRMAL ANAND Educations
Written by: Neeraj Anand
Published by: Anand Technical Publishers
Under: Anand Classes
📞 Contact: +91-9463138669
✉ Email: anandclasses1996@gmail.com

⬅️ Geostationary Satellite | JEE, NEET & CBSE Class 11 Exams Study Material Escape Velocity-Definition, Derivation, Solved Examples, MCQS, FAQs, Quiz | JEE, NEET & CBSE Class 11 Exams Study Material ➡️

RELATED TOPICS