| Hosted by CoCalc | Download
# Beispiel zum Hornerschema aus der Vorlesung # Variable deklarieren x=var('x') # Funktion f(x)=x^4+x^3-7*x^2-x+6 #f(x)=1/8*x^3+1/2*x^2-1/2*x-2 # Beispiel Polynom # Funktion anzeigen lassen show(f) p1 = plot(f,x,-4,4,color='red',gridlines=True, axes_labels=['$x$','$y$']) show(p1,ymin=-20, ymax=20)
x  x4+x37x2x+6\displaystyle x \ {\mapsto}\ x^{4} + x^{3} - 7 \, x^{2} - x + 6