This commit is contained in:
tuz 2025-10-17 00:18:42 -05:00
commit d273824d91
6 changed files with 137 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.aux
*.log
*.log

39
README.md Normal file
View File

@ -0,0 +1,39 @@
# Math
## Jupyter
### Install && Config
```sh
sudo apt update && sudo apt upgrade -y
sudo apt install python3 python3-pip python3-venv -y
```
```sh
mkdir ~/mathlab && cd ~/mathlab
python3 -m venv venv
source venv/bin/activate
pip install jupyterlab
```
python3 -m venv venv
source venv/bin/activate
```sh
jupyter lab
```
jupyter notebook
http://localhost:8888
pip install sympy numpy scipy matplotlib
jupyter nbconvert --to pdf my_notebook.ipynb
## Use
file > new > notebook > python3

BIN
build/index.pdf Normal file

Binary file not shown.

8
docs/HELP.make Normal file
View File

@ -0,0 +1,8 @@
fn win(file)
{
@example
{
main win file="index"
}
}

80
index.tex Normal file
View File

@ -0,0 +1,80 @@
\documentclass{article}
\usepackage[utf8]{inputenc}
% \maketitle
\title{Trinomios}
\author{Unknown}
\date{2025}
% \maketitle End
\begin{document}
\maketitle
\section{Introduction}
\section{Comun Factor}
$$ AB + AC $$
$$ AB + AC + AA $$
$$ AB + AC + AA - A^2 $$
$$ Factor = A $$
$$ AB + AC + AA - A^2 $$
Formula
$$ = A(B + C + A - A)$$
$$ = A(B) A(C) A(A) A(A)$$
Problems
$$ 5m^2 + 15m^3$$
\[
\begin{array}{rr|r}
5 & 15 & 5 \\
1 & 3 &
\end{array}
\]
$$ = 5m^2(1 + 3m) $$
\section{Trinomio}
Trinomio $X^{2}-BX+C = (X - P)(X - I)$
Formula
$$X^{2}-BX+C = (X - P)(X - I)$$
$$(P)(I) = C$$
$$P-I = B$$
$$I<P$$
Problem
$$ \lim_{x\to5} \frac{X^2-7X+10}{X-5} $$
$$ = \lim_{x\to5} {X^2-7X+10} = {(X-5)(X-2)} $$
$$ = \lim_{x\to5} \frac{X^2-7X+10 = (X-5)(X-2)}{X-5}$$
$$ = \lim_{x\to5} \frac{(X-5)(X-2)}{X-5}$$
$$ = \lim_{x\to5} \left(\frac{X^2-7X+10}{X-5}\right) $$
Problem
$$ = \lim_{x\to5} \frac{(X-5)(X-2)}{X-5}$$
\end{document}

7
makefile Normal file
View File

@ -0,0 +1,7 @@
win:
pdflatex -output-directory=build $(file).tex
clean:
rm ./index.pdf
rm ./index.log
rm ./index.aux