-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathderivative.html
More file actions
39 lines (38 loc) · 976 Bytes
/
derivative.html
File metadata and controls
39 lines (38 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/p5@1.4.2/lib/p5.js"></script>
<script>
MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']]
}
};
</script>
<script id="MathJax-script" async
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js">
</script>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<a href="index.html">Home</a>
<hr />
<main>
$$\begin{array}{cc}
f&f'\\
\hline
\alpha f+\beta g&\alpha f'+\beta g'\\
x^\alpha&\alpha x^{\alpha-1}\\
\exp&\exp\\
\sin&\cos\\
\cos&-\sin\\
\sinh&\cosh\\
\cosh&\sinh\\
\ln&\frac{1}{x}\\
fg&f'g+fg'\\
\frac{f}{g}&\frac{f'g-fg'}{g^2}\\
f(g(x))&f'(g(x))g'(x)\\
\end{array}$$
</main>
<a href="https://tutorial.math.lamar.edu/pdf/common_derivatives_integrals.pdf">Paul's Derivatives/Integrals</a>
</body>
</html>