Markdown and MDX
This is an MDX test page that showcases various MDX elements and code blocks.
MDX
Let's try using a component!
testHeadings
Level 3 Heading
Level 4 Heading
Level 5 Heading
Level 6 Heading
Paragraphs
This is a paragraph. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam luctus felis vel risus lacinia, eu fringilla urna mattis. Sed maximus urna eu arcu blandit pulvinar.
Etiam lobortis volutpat ligula, a facilisis purus. Sed vel felis blandit, sodales urna ac, varius mi. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
Lists
Unordered List
- Item 1
- Item 2
- Item 3
Ordered List
- Item 1
- Item 2
- Item 3
Images
Links
Blockquote
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam luctus felis vel risus lacinia, eu fringilla urna mattis.
Horizontal Rule
Code Blocks
Inline Code
This is an example of inline code
.
Fenced Code Blocks
const add = (a, b) => a + b;
console.log(add(2, 3)); // Output: 5
Math
Lift() can be determined by Lift Coefficient () like the following equation.
Proof of the Binomial Theorem
The Binomial Theorem states that for any real numbers and , and any non-negative integer ,
We will prove this by induction.
Base Case
For , the theorem states that , which is true.
Inductive Step
Assume the theorem holds for some , i.e.,
We need to show that the theorem holds for , i.e.,
Expanding , we get .
Using the inductive hypothesis, we can write this as
Expanding this, we get
By shifting the index of the second sum by 1, we can write this as
By the property of binomial coefficients, we know that .
Therefore, we can write the above expression as
which completes the inductive step.
Therefore, by mathematical induction, the Binomial Theorem is proven.
Proof of the Fundamental Theorem of Calculus
The Fundamental Theorem of Calculus states that if a function is continuous over the interval and is an antiderivative of on , then
We will prove this theorem.
Let be the area under the curve of from to , i.e.,
We want to find the derivative of , i.e., .
By the definition of the derivative, we have
Substituting the definition of , we get
By the properties of integrals, we can write this as
As approaches 0, the integral approaches the area of a rectangle with height and width . Therefore, we can write this as
Therefore, , i.e., is an antiderivative of .
Substituting this into the equation , we get
which completes the proof of the Fundamental Theorem of Calculus.