We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 362f6c3 commit 5990acfCopy full SHA for 5990acf
MathExpressions.NET/Helper.cs
@@ -49,7 +49,7 @@ public static void InitDefaultDerivatives()
49
derivatives.AppendLine("cosh(f(x))' = f(x)' * sinh(x);");
50
derivatives.AppendLine("asinh(f(x))' = f(x)' / sqrt(f(x) ^ 2 + 1);");
51
derivatives.AppendLine("acosh(f(x))' = f(x)' / sqrt(f(x) ^ 2 - 1);");
52
- derivatives.AppendLine("exp(f(x))' = exp(f(x)) * f(x)'");
+ derivatives.AppendLine("exp(f(x))' = exp(f(x)) * f(x)';");
53
derivatives.AppendLine("ln(f(x))' = f(x)' / f(x);");
54
derivatives.AppendLine("log(f(x), g(x))' = (ln(f(x)) * g(x)' / g(x) - f(x)' * ln(g(x)) / f(x)) / ln(f(x)) ^ 2;");
55
derivatives.AppendLine("abs(f(x))' = 1;");
0 commit comments