Introduction
In many time and work problems, one person starts the work, and another joins later. This pattern helps determine how long it takes to complete the job, how much each person contributes, or when the second person should join for timely completion.
This type of problem is important because it combines sequential work contribution with joint efficiency concepts.
Pattern: A Starts, B Joins Later
Pattern
The key idea is: Total Work = (Work done by A alone) + (Work done by A + B together).
Work = Rate × Time. So, the equation becomes: (A’s Rate × A’s Time) + ((A + B)’s Rate × Remaining Time) = 1 (total work).
Step-by-Step Example
Question
A can do a piece of work in 12 days and B in 16 days. A works alone for 4 days and then B joins. In how many total days will the work be completed?
Solution
Step 1: Compute one-day works
A’s one-day work = 1/12; B’s one-day work = 1/16.Step 2: Find A’s work in the first 4 days
Work done by A in first 4 days = 4 × (1/12) = 1/3.Step 3: Compute remaining work
Remaining work = 1 - 1/3 = 2/3.Step 4: Compute combined rate of A and B
Combined rate of A and B = 1/12 + 1/16 = (4 + 3)/48 = 7/48.Step 5: Find time to finish remaining work
Time required to complete remaining 2/3 work = (2/3) ÷ (7/48) = (2/3) × (48/7) = 32/7 days ≈ 4.57 days.Final Answer:
60/7 days ≈ 8.57 daysQuick Check:
A’s work = 1/3; Remaining = 2/3; Together for 32/7 days = (32/7) × 7/48 = 32/48 = 2/3 → sum = 1 ✅
Quick Variations
1. A starts and B joins after some time (as above).
2. B starts and A joins later (reverse case).
3. Find when B should join for the work to finish in a given number of days.
4. Find individual shares of work done by A and B.
Trick to Always Use
- Step 1: Compute work done by the person who starts first.
- Step 2: Subtract from total to get remaining work.
- Step 3: Divide remaining work by combined rate to get remaining time.
- Step 4: Add both time periods for total time.
Summary
Summary
In the A Starts, B Joins Later pattern:
- Total work = (A’s solo work) + (A + B’s joint work).
- Always compute fraction of work done separately for each stage.
- Final time = A’s solo time + time taken jointly to complete the rest.
