Your question is Time and Work: A and B. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Systems Planning and Analysis is estimating the duration of a shared planning task. Contributor A can complete the task alone in a_days days, while contributor B can complete it alone in b_days days. Assuming they work simultaneously at constant rates, calculate the number of days required when they work together.
Implement combined_work_days(a_days, b_days).
a_days and b_days, representing the individual completion times in days.1e-9 of the mathematically correct value.Each contributor's daily work rate is the reciprocal of their individual completion time. The combined rate is the sum of those two rates, so the completion time is the reciprocal of the combined rate.
def combined_work_days(a_days, b_days):