Created
December 11, 2024 05:36
-
-
Save MacaylaMarvelous81/6961631c30ed89ba2bfaa3cf496d194f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import marimo | |
__generated_with = "0.9.33" | |
app = marimo.App(width="medium") | |
@app.cell | |
def __(): | |
import marimo as mo | |
return (mo,) | |
@app.cell | |
def __(mo): | |
mo.md( | |
r""" | |
### Rational Zeroes Theorem | |
The rational zeroes theorem can be used to find _rational_ numbers than may possibly be roots of the polynomial. Methods like synthetic | |
substituion can be used to find out which ones are actually roots. | |
#### Example | |
Consider the polynomial $6x^3+11x^2-3x-2$. | |
Find the factors of the leading coefficient ($6$ from $6x^3$) and the constant ($-2$). | |
The factors of $6$ are $\pm\{1,2,3,6\}$. The factors of $-2$ are $\pm\{1,2\}$. | |
The factors of the constant over the factors of the leading coefficient are the possible rational zeoes. | |
The possible rational zeroes of the polynomial are $\pm\{1,2,\frac{1}{2},\frac{1}{3},\frac{2}{3},\frac{1}{6}\}$. | |
""" | |
) | |
return | |
if __name__ == "__main__": | |
app.run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment