-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintegral.html
More file actions
37 lines (36 loc) · 904 Bytes
/
integral.html
File metadata and controls
37 lines (36 loc) · 904 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
<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&\int f\\
\hline
x^\alpha&\frac{x^{\alpha+1}}{\alpha+1}\\
\frac{1}{x}&\ln\\
\exp&\exp\\
\sin&-\cos\\
\cos&\sin\\
\sinh&\cosh\\
\cosh&\sinh\\
\ln x&x\ln x-x\\
udv&uv-\int vdu\\
\end{array}$$
</main>
<a href="https://tutorial.math.lamar.edu/pdf/common_derivatives_integrals.pdf">Paul's Derivatives/Integrals</a>
</body>
</html>