diff --git a/README.md b/README.md
index 1e0b4c6..e86bf1f 100644
--- a/README.md
+++ b/README.md
@@ -228,9 +228,13 @@ A common way of describing movement in physics is by assigning a
function of time to *x* and *y*. For instance, an Archimedean spiral is
known to follow the equations below:
-
+$$
+x(t) = t \cos(t)
+$$
-
+$$
+y(t) = t \sin(t)
+$$
We can encode it, and sample at intervals of 0.05 units of time, using
the snippet below: