diff --git a/episodes/05-loop.md b/episodes/05-loop.md index 53455e96a..aa79cce6d 100644 --- a/episodes/05-loop.md +++ b/episodes/05-loop.md @@ -392,7 +392,7 @@ The code above loops through `a_list`, assigning the index to `idx` and the valu Suppose you have encoded a polynomial as a list of coefficients in the following way: the first element is the constant term, the second element is the coefficient of the linear term, the third is the -coefficient of the quadratic term, etc. +coefficient of the quadratic term, where the polynomial is of the form $ax^0 + bx^1 + cx^2$. ```python x = 5