Measurement is a fundamental aspect of physics and engineering. However, despite the best efforts, no measurement is perfect. There is always a difference between the measured value and the true value, which is known as the error of measurement. This topic is crucial for exams like JEE, NEET, and CBSE Class 11, as it forms the basis of error analysis in experiments.
Types of Errors in Measurement
1. Absolute Error
Absolute error refers to the magnitude of the difference between the true value and the measured value of a physical quantity.
Suppose a physical quantity is measured n times, and the measured values are: \begin{array}{l} a_1, a_2, a_3, …, a_n \end{array}
The arithmetic mean of these values is: \begin{array}{l} a_m = \frac{a_1 + a_2 + … + a_n}{n} \end{array}
This mean value is taken as the true value of the quantity if it is unknown otherwise.
The absolute error in each measurement is given by: \begin{array}{l} \Delta a_i = | a_i – a_m | \end{array} where ฮai is the absolute error for each individual measurement.
2. Mean Absolute Error
Mean absolute error is the average of all absolute errors and is given by:
const quizData = [
{
question: “What is Absolute Error?”,
options: [“The difference between measured and true value”, “Ratio of absolute error to true value”, “Error expressed in percentage”, “None of the above”],
answer: 0,
explanation: “Absolute error is the direct difference between the measured value and the true value.”
},
{
question: “What is the formula for Mean Absolute Error?”,
options: [“(Sum of absolute errors)/n”, “(Measured value – True value)/n”, “(Absolute error / True value)”, “None of these”],
answer: 0,
explanation: “Mean absolute error is given by (Sum of absolute errors)/n.”
}
// Add more questions as needed
];
function loadQuiz() {
const quizContainer = document.getElementById(“quiz”);
quizData.forEach((q, index) => {
const questionElement = document.createElement(“div”);
questionElement.classList.add(“question”);
questionElement.innerHTML = `Q${index + 1}: ${q.question}`;
const optionsElement = document.createElement(“div”);
optionsElement.classList.add(“options”);
q.options.forEach((option, i) => {
optionsElement.innerHTML += ``;
});
quizContainer.appendChild(questionElement);
quizContainer.appendChild(optionsElement);
});
}
function submitQuiz() {
let score = 0;
quizData.forEach((q, index) => {
const selectedOption = document.querySelector(`input[name=”q${index}”]:checked`);
if (selectedOption && parseInt(selectedOption.value) === q.answer) {
score++;
}
});
let resultText = `You scored ${score} out of ${quizData.length}!
๐ Buy complete study material at https://publishers.anandclasses.co.in/ ๐ Proprietor:NIRMAL ANAND Educations โ๏ธ Written by:Neeraj Anand ๐ Published by:Anand Technical Publishers Under Anand Classes ๐ Contact: +91-9463138669 ๐ง Email:anandclasses1996@gmail.com
To enroll in our offline or online coaching programs, visit our coaching center website: ๐ https://anandclasses.co.in/
๐ Call us directly at: +91-94631-38669
๐ฌ WhatsApp Us Instantly
Need quick assistance or want to inquire about classes and materials?
๐ฒ Click below to chat instantly on WhatsApp: ๐ Chat on WhatsApp
๐ฅ Watch Video Lectures
Get access to high-quality video lessons, concept explainers, and revision tips by subscribing to our official YouTube channel: ๐ Neeraj Anand Classes โ YouTube Channel