Introduction
कई aptitude questions में आपको ऐसे statements मिलेंगे जैसे A is x% more than B या A is x% less than B।
ये questions आपकी relative comparison समझ को test करते हैं। मुख्य बात है: base value को सही पहचानकर sentence को math में बदलना।
Pattern: Percentage Comparison
Pattern
अगर A, B से x% अधिक है → A = B × (1 + x/100)
अगर A, B से x% कम है → A = B × (1 - x/100)
Reverse relation: अगर A, B से x% अधिक है → B, A से (x / (100 + x)) × 100 % कम है।
Step-by-Step Example
Question
अगर A की salary, B की salary से 25% अधिक है, और B की salary ₹40,000 है, तो A की salary निकालें। साथ ही यह भी बताएं कि B की salary, A से कितने प्रतिशत कम है।
Solution
-
Step 1: B की salary लिखें।
Sentence: B’s salary = 40,000. -
Step 2: A की salary लिखें (more than case)।
Sentence: A is 25% more than B → A = B × (1 + 25/100).
Math: A = 40,000 × 1.25 = 50,000 -
Step 3: Reverse comparison निकालें।
Sentence: B is how much % less than A?
Difference = A - B = 50,000 - 40,000 = 10,000
Percentage less = (Difference ÷ A) × 100
Math: (10,000 ÷ 50,000) × 100 = 20% -
Step 4: Final Answer.
A की salary = ₹50,000
B की salary, A से 20% कम है -
Step 5: Quick Check.
40,000 का 25% = 10,000 → 40,000 + 10,000 = 50,000 ✅
10,000, 50,000 का 20% है ✅
Quick Variations
अगर A, B से 40% अधिक है: A = 1.4B, और B = (40/140) × 100 = 28.57% कम है A से।
अगर A, B से 30% कम है: A = 0.7B, और B = (30/70) × 100 = 42.86% अधिक है A से।
Trick to Always Use
- Step 1: “More than” → (1 + x/100) से multiply करें।
- Step 2: “Less than” → (1 - x/100) से multiply करें।
- Step 3: Reverse relation के लिए difference को बड़े base से compare करें।
- Step 4: Direct subtraction से हमेशा cross-check करें।
Summary
Summary
Percentage Comparison pattern का पूरा खेल सही base चुनने का है।
- A, B से अधिक है: A = B × (1 + x/100).
- A, B से कम है: A = B × (1 - x/100).
- Reverse relation: Base बड़े value पर shift होता है।
ध्यान रखें: “more than” और “less than” हमेशा relative होते हैं। Base value सही चुनें।
