-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathalgos.tex
executable file
·78 lines (66 loc) · 1001 Bytes
/
algos.tex
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
\textbf{Схема Горнера}\\
\begin{tabular}{l}
\begin{tabular}{|l|l|l|l|l|l|}
\multicolumn{6}{c}{Один пример} \\
\hline
&
5 &
5 &
1 &
0 &
-11
\\
\hline
1&
5 &
10 &
11 &
11 &
0\\
\hline
\multicolumn{1}{c}{}
\end{tabular}
\begin{tabular}{l}
$(5x^4 + 5x^3 + x^2 -11) \div (x - 1) $ \\
$(x - 1)(5x^3 + 10 x^2 + 11 x + 11) + 0$
\end{tabular}
\\
\begin{tabular}{|l|l|l|l|l|l|}
\multicolumn{6}{c}{Второй пример} \\
\hline
&
1 &
3 &
4 &
-5 &
-47
\\
\hline
&
$\downarrow_{+1}$ &
$\downarrow_{+3}$ &
$\downarrow_{+4}$ &
$\downarrow_{-5}$ &
$\downarrow_{-47}$\\
\hline
-3&
1 &
0 &
4 &
-17 &
4\\
\hline
$\xrightarrow[]{-3 * 0}$ &
$\xrightarrow[]{-3 * 1}$ &
$\xrightarrow[]{-3 * 0}$ &
$\xrightarrow[]{-3 * 4}$ &
$\xrightarrow[]{-3 * (-17)}$
&
\\
\hline
\end{tabular}
\begin{tabular}{l}
$(x^4 + 3x^3 + 4x^2 - 5x -47) \div (x + 3) $ \\
$(x + 3)(x^3 + 4x -17) + 4$
\end{tabular}
\end{tabular}\\