Alternate Working
Alternate-day problems are where the LCM-unit method really shines. Workers take turns — A on day 1, B on day 2, A on day 3, and so on — so you should group the work into "cycles". One full cycle here is two days, in which A + B together do a fixed number of units. Count how many complete cycles fit before the work is nearly done, then handle the leftover day by day. The classic trap is assuming the job ends exactly on a cycle boundary; usually it finishes part-way through the next cycle, and whoever’s turn it is matters because the faster worker should ideally start. Always note who works first, compute the per-cycle output, find how many whole cycles are needed, then finish off the remainder. The same idea covers "A works for 2 days, then B for 1 day" patterns — just make the cycle as long as one full rotation.
✅ Solved examples
✏️ Practice — try these, take hints as needed
📝 Topic test — 8 questions
Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.
Formula Reference Sheet
Core rate & efficiency
| Work rate | Rate = Work ÷ Time (units per day) |
|---|---|
| Total work (LCM trick) | Total work = LCM of the given days |
| Efficiency from days | Efficiency = Total work ÷ days |
| Combined time | Time = Total work ÷ (sum of efficiencies) |
| Efficiency ∝ 1/Time | If A is k× as fast as B ⇒ A takes 1/k of B’s time |
CAT power-tools
| Two together (classic) | Time = (a × b) ÷ (a + b) days |
|---|---|
| Man-days (work equivalence) | M1 × D1 = M2 × D2 (same job) |
| Full chained formula | M1·D1·H1 / W1 = M2·D2·H2 / W2 |
| Wages share | Wages split in the ratio of work done (= ratio of efficiencies × days worked) |
| Leak / negative work | Effective rate = inflow rate − leak rate |