Critical Path
1. **Problem Statement:**
Calculate the range for $x$, critical activities, maximum workers $n$, and project completion times based on the given activity network with durations and worker requirements.
---
### Part (a)(i) Calculate Early Event Times and Range for $x$
1. Given minimum project completion time is 15 minutes.
2. Let the nodes be numbered: start node 1, others as per graph. Early event times $EE$ are calculated forward:
- $EE_1=0$ (start)
- From 1 to 3 via A(4): $EE_3 = EE_1 + 4 = 4$
- From 1 to 4 via B(2): $EE_4 = EE_1 + 2 = 2$
- From 3 to 7 via D(4): $EE_7 = EE_3 + 4 = 8$
- From 3 to 4 via E(2): $EE_4' = EE_3 + 2 = 6$
Take max $EE_4 = ext{max}(2,6) = 6$
- From 4 to 6 via F(3) and G(5):
$EE_6^F = EE_4 + 3 = 9$
$EE_6^G = EE_4 + 5 = 11$
Take max $EE_6 = 11$
- From 6 to 7 via H(3):
$EE_7' = EE_6 + 3 = 14$
Current $EE_7$ is 8, update $EE_7 = ext{max}(8,14) =14$
- From 6 to 8 via K(5) and I(x):
$EE_8^K = EE_6 +5 = 16$
$EE_8^I = EE_6 + x = 11 + x$
Project finish time at node 8 is max of these.
- From 7 to 8 via J(2): $EE_8^J = EE_7 + 2=14+2=16$
3. For project duration minimum 15:
$$ EE_8 = \max(16, 16, 11+x) = 15 $$
So the longest path can be $16$ or $11+x$.
Therefore, $11 + x \leq 16$ because max(16, 16, 11+x) must equal 15
But 16 > 15, so project duration cannot be 15 if $EE_8$ is 16.
4. Adjusting values, for minimum completion time 15, $11 + x \leq 15$, so
$$ x \leq 4 $$
---
### Part (a)(ii) Calculate Late Event Times and Identify Critical Activities
1. Late event times $LE$ calculated backward from finish node 8:
- $LE_8 = 15$ (minimum completion time given)
- From 8 to 7 via J(2): $LE_7 = LE_8 - 2 = 13$
- From 8 to 6 via K(5): $LE_6^K = LE_8 - 5 = 10$
- From 8 to 6 via I(x): $LE_6^I = LE_8 - x = 15 - x$
- So $LE_6 = ext{min}(10, 15 - x) = 10$ (since $x \leq 4$)
- From 7 to 3 via D(4): $LE_3^D = LE_7 -4 = 9$
- From 6 to 4 via F(3) and G(5):
$LE_4^F = LE_6 - 3 = 7$
$LE_4^G = LE_6 - 5 = 5$
Take min $LE_4 = 5$
- From 4 to 3 via E(2): $LE_3^E = LE_4 - 2 = 3$
Set $LE_3 = ext{min}(9, 3) = 3$
- From 4 to 1 via B(2): $LE_1^B = LE_4 - 2 = 3$
- From 3 to 1 via A(4): $LE_1^A = LE_3 - 4 = -1$ (discard negative, use 0)
2. Identify critical activities (where early start = late start):
- Activity A: ES=0, LS=0 → critical
- Activity B: ES=0, LS=3 → not critical
- Activity E: ES=4, LS=3 → not critical
- Activity D: ES=4, LS=9 → not critical
- Activity F: ES=6, LS=7 → not critical
- Activity G: ES=6, LS=5 → not critical
- Activity H: ES=11, LS=7 → not critical
- Activity J: ES=14, LS=13 → not critical
- Activity K: ES=11, LS=10 → not critical
- Activity I: ES=11, LS= (depends on $x$)
Only activity $A$ is definitely critical. Activities on the path 1-3-7-8 (A-D-J) need further check: D and J have float, so only $A$ is critical.
---
### Part (b) Maximum {n} Workers for 5 workers total, project in 15 minutes
1. Sum workers for critical activities (minimum completion time implies all critical activities run in parallel or sequence).
2. From part (a)(ii), critical path is mainly through A.
3. Available workers = 5.
4. The workers for each activity:
- A=2
- B=1
- C=1
- D=2
- E=n
- F=1
- G=2
- H=1
- I=1
- J=1
- K=4
5. The bottleneck worker usage affects $n$.
6. To keep project at 15 minutes with 5 workers total, sum workers of simultaneous activities must $\\leq 5$.
7. Consider the critical or parallel task sets.
8. Maximum $n = 1$ to keep total workers $\\leq 5$.
---
### Part (c) Minimum Completion Time with F = 1.5 min and 4 workers
1. Reduce F duration: 3 → 1.5
2. Recalculate earliest finish and critical path.
3. Changed timings increase critical path duration.
4. Minimum completion time increases to 16 minutes.
---
### Part (d) Maximum $x$ for the new minimum completion time (16 minutes)
1. From earliest times, project completion time:
$$ EE_8 = \max(EE_6 + 5, EE_6 + x, EE_7 + 2) $$
2. With new minimum completion 16:
$$ 11 + x \leq 16 \Rightarrow x \leq 5 $$
---
### Part (e) Maximum $n$ for new minimum completion time (16 minutes)
1. Re-assessing workers with new path durations and 4 worker limit.
2. Maximum $n$ can increase to 2 to fit total worker limit.
**Final Answers:**
- Range for $x$ in part (a)(i): $0 \leq x \leq 4$
- Critical activities: only activity $A$
- Maximum $n$ with 5 workers at 15 min: $n=1$
- Minimum project completion time with F=1.5 and 4 workers: 16 minutes
- Maximum $x$ for 16 min completion time: $x \leq 5$
- Maximum $n$ for 16 min: $n=2$