Skip to content

Commit 591b40a

Browse files
authored
Typo fix, Chebyshev recurrence relation (#448)
Changed T_n{x} to T_n(x)
1 parent 64bab4f commit 591b40a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/polynomials/chebyshev.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ T_0(x)=1,\ T_1(x)=x
1414
```
1515

1616
```math
17-
T_{n+1}(x) = 2xT_n{x}-T_{n-1}(x)
17+
T_{n+1}(x) = 2xT_n(x)-T_{n-1}(x)
1818
```
1919

2020
The Chebyshev polynomioals of the second kind, ``U_n(x)``, can be defined by

0 commit comments

Comments
 (0)