0
0

Average of Consecutive Numbers

Introduction

परीक्षा में बहुत सामान्य प्रकार के average problems ऐसे होते हैं जो consecutive numbers - जैसे natural numbers, even numbers, या odd numbers - पर आधारित होते हैं। ये problems आसान हो जाते हैं जब आप यह property समझ लें कि consecutive numbers का average हमेशा उनके middle term के बराबर होता है।

यह property आपको सारे numbers जोड़ने के बिना जल्दी समस्या हल करने में मदद करती है।

Pattern: Average of Consecutive Numbers

Pattern

Consecutive numbers (चाहे natural, even या odd) का average हमेशा middle number के बराबर होता है।

- यदि numbers की गिनती odd हो → Average = Middle number
- यदि numbers की गिनती even हो → Average = दो middle numbers का mean।

किसी अनुक्रम के लिए जो 1 to n तक चले: Average = (n + 1) ÷ 2.

Consecutive even या odd numbers के लिए: Average = (First + Last) ÷ 2.

Step-by-Step Example

Question

First 10 natural numbers का average निकालिए।

Options:

  • A. 5.5
  • B. 6
  • C. 4.5
  • D. 5

Solution

  1. Step 1: Sequence समझें

    First 10 natural numbers = 1, 2, 3, …, 10.
  2. Step 2: Formula apply करें

    First n natural numbers का average = (n + 1) ÷ 2.
  3. Step 3: n = 10 substitute करें

    Average = (10 + 1) ÷ 2 = 11 ÷ 2 = 5.5.
  4. Final Answer:

    5.5 → Option A
  5. Quick Check:

    Middle terms 5 और 6 → (5 + 6) ÷ 2 = 5.5 ✅

Quick Variations

- First 20 natural numbers का average = (20 + 1)/2 = 10.5.

- Consecutive even numbers 2 से 20 तक का average = (2 + 20)/2 = 11.

- Consecutive odd numbers 1 से 19 तक का average = (1 + 19)/2 = 10.

Trick to Always Use

  • Consecutive numbers का average = middle term
  • यदि count even हो → दो middle terms का mean लें
  • 1 से n तक → formula (n + 1)/2
  • यह shortcut जोड़ने की अपेक्षा काफी समय बचाता है

Summary

Summary

Average of Consecutive Numbers को middle term या formula से तेज़ी से हल किया जा सकता है।

  • Odd count: Average = middle number
  • Even count: Average = दो middle numbers का mean
  • 1 to n: Average = (n + 1)/2
  • Consecutive even/odd numbers: Average = (First + Last)/2

Practice

(1/5)
1. Find the average of the first 15 natural numbers.
easy
A. 8
B. 7.5
C. 8.5
D. 7

Solution

  1. Step 1: Recall the formula

    Formula for average of first n natural numbers = (n + 1) ÷ 2.
  2. Step 2: Substitute n

    For n = 15 → (15 + 1) ÷ 2 = 16 ÷ 2 = 8.
  3. Final Answer:

    8 → Option A
  4. Quick Check:

    The middle term of 1..15 is 8 → confirms result ✅
Hint: Use (n + 1) ÷ 2 for 1 to n.
Common Mistakes: Adding all numbers manually instead of using the formula.
2. What is the average of consecutive even numbers from 2 to 20?
easy
A. 11
B. 10
C. 12
D. 13

Solution

  1. Step 1: Use sequence property

    For an arithmetic sequence, average = (first + last) ÷ 2.
  2. Step 2: Compute

    (2 + 20) ÷ 2 = 22 ÷ 2 = 11.
  3. Final Answer:

    11 → Option A
  4. Quick Check:

    Middle terms are 10 and 12 → (10 + 12) ÷ 2 = 11 ✅
Hint: Use (first + last)/2 for any consecutive sequence.
Common Mistakes: Trying to average all terms individually instead of using first+last.
3. What is the average of consecutive even numbers between 40 and 60?
easy
A. 48
B. 49
C. 51
D. 50

Solution

  1. Step 1: Identify endpoints

    First even = 40, last even = 60.
  2. Step 2: Compute average

    Average = (40 + 60) ÷ 2 = 100 ÷ 2 = 50.
  3. Final Answer:

    50 → Option D
  4. Quick Check:

    Middle even number is 50 → confirms result ✅
Hint: Average = (first + last)/2 for arithmetic sequences.
Common Mistakes: Counting terms incorrectly or picking wrong endpoints.
4. Find the average of the first 25 odd numbers.
medium
A. 24
B. 25
C. 26
D. 27

Solution

  1. Step 1: Identify first and last

    The nth odd number = 2n - 1; for n = 25 the last odd is 49.
  2. Step 2: Apply average formula

    Average = (first + last) ÷ 2 = (1 + 49) ÷ 2 = 50 ÷ 2 = 25.
  3. Final Answer:

    25 → Option B
  4. Quick Check:

    The 13th odd number is 25 → matches average ✅
Hint: For first n odd numbers the average equals n.
Common Mistakes: Using arithmetic mean of first/last incorrectly or off-by-one errors.
5. The average of consecutive numbers from 50 to 100 is?
medium
A. 74
B. 76
C. 75
D. 73

Solution

  1. Step 1: Apply range average

    Average for a range a to b = (a + b) ÷ 2.
  2. Step 2: Compute

    (50 + 100) ÷ 2 = 150 ÷ 2 = 75.
  3. Final Answer:

    75 → Option C
  4. Quick Check:

    75 is the middle number between 50 and 100 → confirms result ✅
Hint: Range average = (first + last)/2.
Common Mistakes: Dividing by number of terms instead of using the first+last shortcut.

Mock Test

Ready for a challenge?

Take a 10-minute AI-powered test with 10 questions (Easy-Medium-Hard mix) and get instant SWOT analysis of your performance!

10 Questions
5 Minutes