Mixed Graph DI

Master High-Level Data Interpretation. Combine data from multiple graphs (Pie+Table, Bar+Line) and solve Arithmetic DI based on Profit/Loss, Time/Work, and more.

Model 1: Data Bridging (Linking Graphs)

      <ul class='list-disc pl-6'>
        <li><strong>The Concept:</strong> Information is split across two sources. Graph A gives 'Total', Graph B gives 'Breakup'.</li>
        <li><strong>Strategy:</strong> Always find the <strong>Common One Unit</strong> first.</li>
        <li><strong>Example:</strong> Pie Chart = % Distribution of Total Population. Table = Ratio of Male:Female.</li>
        <li><strong>Step 1:</strong> Calculate Total Population for City A from Pie.</li>
        <li><strong>Step 2:</strong> Apply Ratio from Table to split into Male/Female.</li>
        <li><strong>Warning:</strong> Never mix percentages of different bases (e.g., % of Total vs % of Valid Votes).</li>
      </ul>
    

Example:

Q: City A = 20% of Total (1000). Table Ratio M:F = 3:2. Find Females in A.
Solution: Total A = 20% of 1000 = 200. Females = (2/5) ├Ч 200 = 80.

Model 2: Arithmetic DI (Concept-Based)

      <ul class='list-disc pl-6'>
        <li><strong>The Concept:</strong> Graphs represent arithmetic variables like Speed, Time, Cost Price, or Work Done.</li>
        <li><strong>Logic:</strong> You must know the underlying formula (e.g., Profit = SP - CP, Work = Rate ├Ч Time).</li>
        <li><strong>Missing Data Tables:</strong> Use the formula to fill in the blanks. If CP and Profit% are given, find SP.</li>
      </ul>
    

Example:

Q: Table: Item A (CP=100, Profit%=20%). Graph: Discount=10%. Find MP.
Solution: SP = 100 + 20% = 120. SP = MP ├Ч 0.9. 120 = 0.9MP. MP = 1200/9 = 133.33.

Model 3: Radar/Spider Charts

      <ul class='list-disc pl-6'>
        <li><strong>Structure:</strong> A web-like graph where each axis represents a variable (e.g., Subject Scores).</li>
        <li><strong>Reading Data:</strong> Identify the scale carefully. Points farther from the center have higher values.</li>
        <li><strong>Traps:</strong> Confusion between lines for different entities. Trace one entity completely before calculating.</li>
      </ul>
    

Example:

Q: Radar: Student A (Math=40, Eng=50). Student B (Math=50, Eng=60). Who has higher average?
Solution: Avg A = 45. Avg B = 55. Student B.