0
0

Line Graph Interpretation

Introduction

Line Graph Interpretation என்பது தொடர்ச்சியான அச்சில் (பொதுவாக time) வரையப்பட்ட தரவுகளில் இருந்து trends மற்றும் சரியான values-ஐ வாசிக்கும் உங்கள் திறனை சோதிக்கிறது. இந்த pattern aptitude tests-ல் பொதுவாக வருகிறது, ஏனெனில் பல business மற்றும் data problems-ல் trends (sales, profit, population) மாதங்கள் அல்லது ஆண்டுகளாகக் காட்டப்படுகின்றன.

வழக்கமான tasks: சரியான values வாசித்தல், differences கணக்கிடுதல், percentage change, average rate of change கணக்கிடுதல், மற்றும் trends (increasing, decreasing, steady) அடையாளம் காணுதல்.

Pattern: Line Graph Interpretation

Pattern

Key concept: points-இல் இருந்து numeric values-ஐ வாசித்து, கேள்விக்கேற்ப difference, percentage-change, average (mean) அல்லது rate formulas-ஐ பயன்படுத்துதல்.

பயனுள்ள formulas:
Absolute change = New - Old
% change = (New - Old) ÷ Old × 100
Average rate (per period) = Total change ÷ Number of periods

Step-by-Step Example

Question

கீழே உள்ள line graph, 2018 முதல் 2023 வரை Company Z-ன் வருடாந்திர revenue (₹ lakhs-ல்) காட்டுகிறது.
Find: (a) 2019 முதல் 2023 வரை revenue-இல் ஏற்பட்ட absolute increase, மற்றும் (b) அதே காலத்தில் ஏற்பட்ட percentage increase.

{
  "chart": {
    "type": "line",
    "title": "Revenue (₹ lakhs) - 2018 to 2023",
    "xKey": "year",
    "yKey": "value",
    "data": [
      { "year": 2018, "value": 80 },
      { "year": 2019, "value": 95 },
      { "year": 2020, "value": 110 },
      { "year": 2021, "value": 125 },
      { "year": 2022, "value": 140 },
      { "year": 2023, "value": 170 }
    ],
    "colors": ["#00b894"],
    "dot": true,
    "dataLabel": true,
    "yUnit": "₹ lakhs"
  }
}

Solution

  1. Step 1: graph-இல் இருந்து values-ஐ வாசிக்கவும்

    2019 = ₹95 lakhs, 2023 = ₹170 lakhs.

  2. Step 2: absolute increase கணக்கிடவும்

    Increase = 170 - 95 = ₹75 lakhs.

  3. Step 3: percentage increase கணக்கிடவும்

    % increase = (75 ÷ 95) × 100 ≈ 78.95%.

  4. Final Answer:

    (a) ₹75 lakhs, (b) ≈ 78.95%

  5. Quick Check:

    95 + 75 = 170; 75 ÷ 95 ≈ 0.789 → 78.9% ✅

Quick Variations

1. குறிப்பிட்ட x (year/month) இல் values-ஐ வாசித்து difference அல்லது % change கணக்கிடவும்.

2. average yearly growth கண்டறியவும்: (Final - Initial) ÷ Number of years.

3. rate comparison-க்கு இரண்டு points-க்கு இடையிலான slope-ஐ மதிப்பிடவும்.

4. intermediate values இல்லாதபோது, visually interpolate செய்யவும் அல்லது அருகிலுள்ள ticks-ஐ பயன்படுத்தவும்.

Trick to Always Use

  • Step 1 → கணக்கிடுவதற்கு முன் graph-இல் இருந்து வாசித்த சரியான numbers-ஐ எழுதிக்கொள்ளுங்கள்.
  • Step 2 → sign errors தவிர்க்க, முதலில் absolute-change, பின்னர் percentage கணக்கிடுங்கள்.
  • Step 3 → trends உறுதி செய்ய, குறைந்தது மூன்று தொடர்ச்சியான points-ஐ சரிபார்க்கவும்.

Summary

Summary

  • வரையப்பட்ட points-இல் இருந்து values-ஐ கவனமாக வாசிக்கவும்.
  • absolute மற்றும் percentage change-க்கு formulas-ஐ பயன்படுத்தவும்.
  • சரியானதா என்பதை graph-இல் visually cross-check செய்யவும்.
  • quick calculation மூலம் முடிவுகளை verify செய்யவும்.

நினைவில் வைக்க வேண்டிய example:
Increase = 170 - 95 = 75; % increase ≈ 78.95%

Practice

(1/5)
1.

The line graph below shows annual sales (in ₹ lakh) of a company from 2019 to 2023. Find the total sales in all five years.

easy
A. 300
B. 260
C. 240
D. 270

Solution

  1. Step 1: Note given sales

    Values: 40, 50, 60, 70, 80 (all in ₹ lakh).

  2. Step 2: Add the values

    Total = 40 + 50 + 60 + 70 + 80 = 300 (₹ lakh).

  3. Step 3: Match units to options

    Options are in ₹ lakh, so final total = 300.

  4. Final Answer:

    300 → Option A
  5. Quick Check:

    Re-check sum: (40+50)=90, (60+70)=130, 90+130+80 = 300 ✅

Hint: Add all yearly values directly; group pairs to reduce errors.
Common Mistakes: Forgetting to include one year or mixing units.
2.

The line graph shows revenue (in ₹ crore) of a company over 5 years. Find the percentage increase from 2020 to 2023.

easy
A. 40%
B. 45%
C. 50%
D. 60%

Solution

  1. Step 1: Identify old and new values

    Old (2020) = ₹120 crore; New (2023) = ₹180 crore.

  2. Step 2: Apply percentage change formula

    % increase = (New - Old) ÷ Old × 100.

  3. Step 3: Compute

    % increase = (180 - 120) ÷ 120 × 100 = 60 ÷ 120 × 100 = 50%.

  4. Final Answer:

    50% → Option C
  5. Quick Check:

    120 × 1.5 = 180, so increase is 50% ✅

Hint: Use (New-Old)/Old × 100 for percentage increase.
Common Mistakes: Using the new value as denominator or reversing values.
3.

The line graph shows the production (in tonnes) of a factory from 2018 to 2022. Find the average production.

easy
A. 110
B. 108
C. 112
D. 114

Solution

  1. Step 1: Sum all productions

    80 + 100 + 120 + 100 + 140 = 540 (tonnes).

  2. Step 2: Divide by number of years

    Average = 540 ÷ 5 = 108.

  3. Step 3: Match to options

    108 → Option B.

  4. Final Answer:

    108 tonnes → Option B
  5. Quick Check:

    108 × 5 = 540 ✅

Hint: Average = (sum of values) ÷ (number of periods).
Common Mistakes: Dividing by wrong number of years or misadding values.
4.

The line graph below shows monthly electricity consumption (in units) from Jan to May. Find the month with the highest consumption.

medium
A. Jan
B. Feb
C. Apr
D. May

Solution

  1. Step 1: Read the plotted values

    Values are Jan=60, Feb=80, Mar=40, Apr=100, May=120.

  2. Step 2: Identify the maximum

    The highest value is 120 (May).

  3. Final Answer:

    May → Option D
  4. Quick Check:

    No month has value >120, so May is correct ✅

Hint: Find the highest plotted point or the largest numeric value.
Common Mistakes: Reading the lowest peak by mistake or misreading axis labels.
5.

The line graph shows profits (in ₹ crore) for a firm. Find the average annual increase between 2018 and 2022.

medium
A. 6.25
B. 5.5
C. 7.25
D. 6.5

Solution

  1. Step 1: Identify first and last values

    First (2018) = 25; Last (2022) = 50.

  2. Step 2: Find total increase

    Total increase = 50 - 25 = 25.

  3. Step 3: Divide by intervals (years - 1)

    Number of intervals = 4 → Average annual increase = 25 ÷ 4 = 6.25.

  4. Final Answer:

    6.25 crore per year → Option A
  5. Quick Check:

    6.25 × 4 = 25 ✅

Hint: Average increase = (Last - First) ÷ (number of intervals).
Common Mistakes: Dividing by total years instead of intervals (years - 1).

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