In this TeXinfo version, the first exercise in the symbolic differentiation example incorrectly asks the reader to add the following differentiation rule to the algorithm:
n_1 n_2
--- = --- if and only if n_1 d_2 = n_2 d_1
d_1 d_2
This is not a differentiation rule and is clearly not the equation that was meant, as is confirmed by referring to the original text of SICP. The rest of the question makes no sense in light of this equation. This PR replaces the equation the correct one:
d(u^n) / du \
------ = n u^(n-1) | -- |
dx \ dx /
It also includes a small typo fix for the build instructions in sicp.el.
In this TeXinfo version, the first exercise in the symbolic differentiation example incorrectly asks the reader to add the following differentiation rule to the algorithm:
This is not a differentiation rule and is clearly not the equation that was meant, as is confirmed by referring to the original text of SICP. The rest of the question makes no sense in light of this equation. This PR replaces the equation the correct one:
It also includes a small typo fix for the build instructions in sicp.el.