Registriert seit: 28. Mär 2004
Ort: Cottbus
26 Beiträge
|
Re: Mathematik ??
18. Apr 2004, 17:31
Wenn du die Polynomdivision (ohne Delphi) mit Variablen machst, also mit
(ax^3+bx^2+cx+d)/(x-y)=... (y ist deine erste NST)
dann erhälst du mit
y= kx^2+lx+m
für
k=a;
l=b+y*a
m=c+b*y+y^2*a
am Beispiel y=3x^3-10x^2+7x-12:
a=3
b=-10
c=7
d=-12
y=3 (deine erste NST)
-> demnach ist deine quadratische Formel dann
y=3x^2-x+4
-> der Quellcode ist jetzt nicht mehr schwer.
|