Scilab 6.0.0
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
bezout
equação de Bezout para polinômios ou inteiros
Seqüência de Chamamento
[thegcd,U]=bezout(p1,p2)
Parâmetros
- p1, p2
dois polinômios reais ou dois escalares inteiros (tipo igual a 8)
Descrição
[thegcd,U]=bezout(p1,p2)
computa o MDC
thegcd
de p1
e p2
e também uma matriz (2x2) unimodular U
tal quet:
[p1,p2]*U = [thegcd,0]
O MMC de p1
e p2
é dado
por:
p1*U(1,2)
(or
-p2*U(2,2)
)
Exemplos
Report an issue | ||
<< Polinômios | Polinômios | chepol >> |