Skip to content

Commit d0c612e

Browse files
committed
Replace mathjax with plain text.
1 parent 0deb7e7 commit d0c612e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: exercises/concept/pizza-pi/.docs/instructions.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ For example, to make 4 pizzas 30cm in diameter:
2020

2121
Helpfully, Lilly has worked out the following equation for calculating grams of dough (g) from the number of pizzas (n) and their diameters (d):
2222

23-
$$g = n \cdot \left(\dfrac{45 \pi d}{20} + 200\right)$$
23+
`g = n * (((45 * pi * d) / 20) + 200)`
2424

2525
## 2. A Splash of Sauce
2626

@@ -35,7 +35,7 @@ For example, given Lilly has used 250ml of sauce:
3535

3636
For this task, Lilly has prepped the following equation relating milliliters of sauce applied (s) to the pizza diameter (d):
3737

38-
$$d = \sqrt{\dfrac{40s}{3\pi}}$$
38+
`d = square-root of ((40 * s) / (3 * pi))`
3939

4040
## 3. Some Cheese, Please
4141

@@ -52,7 +52,7 @@ For example, given a 25x25x25cm cheese cube and pizzas 30cm in diameter:
5252

5353
Once again, Lilly has come to the rescue with an equation calculating the number of pizzas (n) of some diameter (d) that can be made from a cheese cube of a side-length (l):
5454

55-
$$n = \dfrac{2l^3}{3 \pi d^2}$$
55+
`n = (2 * (l^2))/(3 * pi * (d^2))`
5656

5757
## 4. A Fair Share
5858

0 commit comments

Comments
 (0)