Skip to content

Commit 1cd907a

Browse files
authored
Update solution.md (#36)
change 2!/3^n to 1!/3^n as you'd get 14/3 as the answer and that makes no sense.
1 parent d4a74d4 commit 1cd907a

File tree

1 file changed

+1
-1
lines changed
  • src/content/questions/comp2804/2019-fall-midterm/10

1 file changed

+1
-1
lines changed

src/content/questions/comp2804/2019-fall-midterm/10/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<ul>
1010
<li>$f(n) = 7 \cdot \frac{n!}{3^n}$ <br/>
11-
$f(1) = 7 \cdot \frac{2!}{3^1} = 7 \cdot \frac{1}{3} = \frac{7}{3}$
11+
$f(1) = 7 \cdot \frac{1!}{3^1} = 7 \cdot \frac{1}{3} = \frac{7}{3}$
1212
<li>$f(n) = 7^n \cdot \frac{n!}{3^n}$ <br/>
1313
$f(1) = 7^1 \cdot \frac{2!}{3^1} = 7 \cdot \frac{2}{3} = \frac{14}{3}$
1414
<li>$f(n) = 7 \cdot \frac{(n + 1)!}{3^n}$ <br/>

0 commit comments

Comments
 (0)