Skip to content

Commit a60bab2

Browse files
committed
polynomials
1 parent 2a42d73 commit a60bab2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source_md/modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ ghci> transpose ["hey","there","folks"]
132132
["htf","eho","yel","rk","es"]
133133
```
134134

135-
Say we have the polynomials *3x^2^ + 5x + 9*, *10x^3^ + 9* and *8x^3^ + 5x^2^ + x - 1* and we want to add them together.
135+
Say we have the polynomials $3x^2 + 5x + 9$, $10x^3 + 9$ and $8x^3 + 5x^2 + x - 1$ and we want to add them together.
136136
We can use the lists `[0,3,5,9]`, `[10,0,0,9]` and `[8,5,1,-1]` to represent them in Haskell.
137137
Now, to add them, all we have to do is this:
138138

0 commit comments

Comments
 (0)