Mixed Graphs (Bar + Line / Table + Pie)

Introduction

Mixed-graph கேள்விகள் இரண்டு விதமான data display-களை இணைக்கின்றன - பொதுவாக ஒரு bar chart உடன் line chart அல்லது ஒரு table உடன் pie chart. ஒரே problem-இல் absolute values (bars / table) மற்றும் rates அல்லது percentages (line / pie) ஆகியவற்றை ஒப்பிட இதைப் பயன்படுத்துகிறார்கள்.

இந்த pattern முக்கியமானது, ஏனெனில் real-world data-வில் count-களும் rate-களும் ஒன்றாகக் காணப்படும் (எ.கா., sales volume vs. profit margin). நீங்கள் இரு display-களையும் சரியாக வாசித்து, data set-களை இணைத்து, தேவையான calculation-களை செய்ய வேண்டும்.

Pattern: Mixed Graphs (Bar + Line / Table + Pie)

Pattern

Key concept: ஒவ்வொரு display-இலிருந்தும் values-ஐ தனித்தனியாக எடுக்கவும் (bar/table → absolute; line/pie → percentage அல்லது trend), பின்னர் சரியான formula-களை பயன்படுத்தி combine செய்யவும் (percentage of total, ratio, difference, அல்லது derived value).

Common steps:
1. bar/table-இலிருந்து absolute numbers-ஐ வாசிக்கவும்.
2. line/pie-இலிருந்து percentages அல்லது trends-ஐ வாசிக்கவும்.
3. Formula-வை apply செய்யவும்: Value = (percent × base) ÷ 100, அல்லது volumes மற்றும் rates-ஐ combine செய்து derived amounts-ஐ பெறவும் (எ.கா., profit = sales × profit%).

Step-by-Step Example

Question

கீழே உள்ள chart ஒரு combined bar (sales in ₹ lakhs) மற்றும் line (profit %) ஆகும். அதே ஆண்டுகளில் கொடுக்கப்பட்ட Discounts (₹ lakhs) table-இல் உள்ளது.
Find: (a) 2023-க்கு Profit amount (₹ lakhs-ல்), மற்றும் (b) 2023-க்கு discount கழித்த Net revenue (Sales - Discount).

{
  "chart": {
    "type": "mixed",
    "title": "Sales (₹ lakhs) & Profit % - 2021 to 2023",
    "xKey": "year",
    "series": [
      {
        "name": "Sales",
        "type": "bar",
        "yKey": "sales",
        "data": [
          { "year": 2021, "sales": 150 },
          { "year": 2022, "sales": 180 },
          { "year": 2023, "sales": 200 }
        ],
        "yUnit": "₹ lakhs"
      },
      {
        "name": "Profit %",
        "type": "line",
        "yKey": "profit_pct",
        "data": [
          { "year": 2021, "profit_pct": 5 },
          { "year": 2022, "profit_pct": 10 },
          { "year": 2023, "profit_pct": 15 }
        ],
        "yUnit": "%"
      }
    ],
    "colors": ["#0984e3", "#e17055"],
    "dot": true,
    "dataLabel": true
  }
}
YearDiscount (₹ lakhs)
202110
202212
202320

Given: Sales 2023 = ₹200 lakhs; Profit% 2023 = 15%; Discount 2023 = ₹20 lakhs.

Solution

  1. Step 1: Base values-ஐ அடையாளம் காண்க

    Sales = 200 lakhs; Profit% = 15%; Discount = 20 lakhs.

  2. Step 2: Percentage formula-வை பயன்படுத்தவும்

    Profit = (15 × 200) ÷ 100

  3. Step 3: Profit amount-ஐ கணக்கிடவும்

    Profit = 30 lakhs.

  4. Step 4: Net revenue-ஐ கணக்கிடவும்

    Net revenue = 200 - 20 = 180 lakhs.

  5. Final Answer:

    Profit = ₹30 lakhs; Net revenue = ₹180 lakhs.
  6. Quick Check:

    200-ன் 15% = 30; 200-20 = 180 - இரண்டும் சரியாக பொருந்துகிறது.

Quick Variations

1. Bar + line → amounts-ஐ derive செய்ய (profit, tax, commission).

2. Table + pie → table total-ஐ பயன்படுத்தி pie%-ஐ actual values-ஆக மாற்றவும்.

3. Clustered bar + line → categories-களுக்கிடையே ஒப்பீடு + rate trends.

4. Missing data → ஒரு graph-இலிருந்து totals, மற்றொன்றிலிருந்து percentages-ஐ பயன்படுத்தவும்.

Trick to Always Use

  • Step 1: Combine செய்வதற்கு முன், இரு display-களிலிருந்தும் values-ஐ தனித்தனியாக வாசிக்கவும்.
  • Step 2: Percentages-ஐ கடைசியில் convert செய்து, சரியான base value-க்கு apply செய்யவும்.
  • Step 3: எல்லா numbers-மும் ஒரே unit-இல் இருக்கிறதா என்பதை உறுதி செய்யவும் (₹, lakhs, thousands).

Summary

Summary

  • Absolute values (bars/tables) மற்றும் rate values (line/pie) ஆகியவற்றை தனித்தனியாக எடுக்கவும்.
  • Conversion-களுக்கு Value = (percent × base) ÷ 100 பயன்படுத்தவும்.
  • Combine செய்வதற்கு முன் units-ஐ check செய்து standardize செய்யவும்.
  • Quick re-computation சிறிய arithmetic error-களைத் தவிர்க்க உதவும்.

Practice

(1/5)
1.

The following mixed chart shows Sales (in ₹ lakh) as bars and Profit % as a line for three years. Find the Profit amount in 2023.

Data (readable): Sales (₹ lakh) - 2021: 100; 2022: 140; 2023: 180. Profit% - 2021: 10%; 2022: 12%; 2023: 15%.

easy
A. ₹27 lakh
B. ₹25 lakh
C. ₹24 lakh
D. ₹30 lakh

Solution

  1. Step 1: Read the base values:

    Sales (2023) = ₹180 lakh; Profit% (2023) = 15%.

  2. Step 2: Apply percentage formula:

    Profit = (Profit% × Sales) ÷ 100 = (15 × 180) ÷ 100.

  3. Step 3: Compute:

    Profit = 2700 ÷ 100 = ₹27 lakh.

  4. Final Answer:

    ₹27 lakh → Option A.

  5. Quick Check:

    0.15 × 180 = 27 ✅

Hint: Multiply sales by (profit% ÷ 100).
Common Mistakes: Using wrong year's sales or forgetting to divide by 100.
2.

The mixed visual below shows Annual Sales (bars, in ₹ 000) and Expense % (line) for three years. Find the average expense % over the three years.

Data (readable): Expense% - 2020: 20%; 2021: 25%; 2022: 30% (sales shown for context in ₹ 000).

easy
A. 22%
B. 25%
C. 27%
D. 28%

Solution

  1. Step 1: List expense percentages:

    20%, 25%, 30%.

  2. Step 2: Compute simple average:

    Average = (20 + 25 + 30) ÷ 3 = 75 ÷ 3 = 25%.

  3. Final Answer:

    25% → Option B.

  4. Quick Check:

    Values centre around 25% → average 25% ✅

Hint: For equally weighted periods, average = sum ÷ count.
Common Mistakes: Using weighted average without weights or dividing by wrong count.
3.

The table shows the city's annual budget and the pie chart shows departmental shares. Total budget = ₹800 lakh. Find the R&D allocation if the pie slice indicates 25% for R&D.

Data (readable): Total budget = ₹800 lakh; R&D = 25% of total.

ItemValue
Total Budget₹800 lakh
easy
A. ₹150 lakh
B. ₹175 lakh
C. ₹200 lakh
D. ₹250 lakh

Solution

  1. Step 1: Identify total and percentage:

    Total budget = ₹800 lakh; R&D share = 25%.

  2. Step 2: Apply percentage formula:

    Allocation = (25 × 800) ÷ 100 = 200.

  3. Final Answer:

    ₹200 lakh → Option C.

  4. Quick Check:

    25% of 800 = 0.25 × 800 = 200 ✅

Hint: Multiply total by (percentage ÷ 100) to get the share.
Common Mistakes: Forgetting the unit (lakh) or misplacing decimal.
4.

The mixed visual shows Sales (bars, in ₹ lakh) for Companies A & B and the Profit % (line) for each in 2022. Which company earned the higher profit amount in 2022?

Data (readable): A → Sales ₹150 lakh, Profit% = 12%; B → Sales ₹140 lakh, Profit% = 10%.

medium
A. A
B. B
C. Equal
D. Cannot be determined

Solution

  1. Step 1: Compute A’s profit:

    A profit = 12% of 150 = (12 × 150) ÷ 100 = 18 (₹ lakh).

  2. Step 2: Compute B’s profit:

    B profit = 10% of 140 = (10 × 140) ÷ 100 = 14 (₹ lakh).

  3. Step 3: Compare amounts:

    18 > 14 → Company A earned higher profit.

  4. Final Answer:

    A → Option A.

  5. Quick Check:

    12% of 150 = 18; 10% of 140 = 14 ✅

Hint: Compute (profit% × sales) ÷ 100 for each firm, then compare.
Common Mistakes: Comparing percentages alone without applying to sales base.
5.

The table shows annual sales (₹ lakh) for four products and the pie chart shows profit-share (%) by product. Total company profit = ₹80 lakh. Find the profit of Product C.

Data (readable): Total profit = ₹80 lakh; Product C share = 20% (as shown in pie).

ProductSales (₹ lakh)
A100
B120
C80
D60
medium
A. ₹10 lakh
B. ₹12 lakh
C. ₹14 lakh
D. ₹16 lakh

Solution

  1. Step 1: Identify total profit and C’s percent:

    Total profit = ₹80 lakh; C’s share = 20%.

  2. Step 2: Apply percentage formula:

    Profit for C = (20 × 80) ÷ 100 = 1600 ÷ 100 = ₹16 lakh.

  3. Final Answer:

    ₹16 lakh → Option D.

  4. Quick Check:

    0.20 × 80 = 16 ✅

Hint: Multiply total profit by (percentage ÷ 100) to get allocation.
Common Mistakes: Applying percentage to sales instead of to the given total profit base.

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