Problem Statement Two brothers have 8 kg of milk . They also have three measuring utensils with capacities of 8 kg, 5 kg, and 3 kg . Using only these utensils, how can they divide the milk into 4 kg each ? 🧮 Step‑by‑Step Solution Start: 8 kg of milk is in the 8 kg vessel . (8, 0, 0) Pour 5 kg into the 5 kg vessel . (3, 5, 0) Pour 3 kg from the 5 kg vessel into the 3 kg vessel . (3, 2, 3) Pour 3 kg from the 3 kg vessel back into the 8 kg vessel . (6, 2, 0) Pour 2 kg from the 5 kg vessel into the 3 kg vessel . (6, 0, 2) Pour 3 kg from the 8 kg vessel into the 5 kg vessel . (3, 3, 2) Pour 2 kg from the 3 kg vessel into the 5 kg vessel . (3, 5, 0) Pour 5 kg from the 5 kg vessel into the 8 kg vessel . (8, 0, 0) Now repeat the process to split into two equal 4 kg portions: Transfer 5 kg → (3, 5, 0) Transfer 3 kg → (3, 2, 3) Transfer 3 kg back → (6, 2, 0) Transfer 2 kg → (6, 0, 2) Transfer 2 kg into 8 kg vessel → (4, 0, 4) ✅ Final Answer The brothers can successfully di...