Sommaire



Installer et compiler ces fichiers dans votre répertoire de travail.

c01a.c
'
/* ---------------------------------- */
/* save as c01a.c                     */
/* ---------------------------------- */
#include "x_hfile.h"
/* ---------------------------------- */
# define   DEGREE  2
# define   COEFF   DEGREE + 1
/* ---------------------------------- */
int main(void)
{
int    n =  COEFF;
double x =  -1;
double remainder;

double *Px = I_p(n);
double *Pt = I_p(n);
double *Pa = I_p(n);
double *Pq = I_p((n-1));

double a[COEFF] = {-3,-20,4};

 clrscrn();
 
 c_a_P(a,Px);
 printf("\n If P(x) is : \n\n");
 p_P(Px);

 printf(" If we divide P(x) by : x - (%+.3f) \n\n",x);
 remainder = compute_horner(x,Px,Pt,Pa,Pq);
 p_horner(Px,Pt,Pa);

 printf(" The synthetic division indicates that the quotien is :\n\n");
 p_P(Pq );

 printf(" The synthetic division indicates that P(%+.3f) = %+.3f\n\n",
        x, remainder);
        
 stop();
 
 free(Px);
 free(Pt);
 free(Pa);
 free(Pq);

 return 0;
}


Vérifier les calculs à la main. (Voir le premier exemple pour apprendre la méthode de Horner)


Exemple de sortie écran :

 
 If p_A is : 

   -3.00*x**2  -20.00*x  +4.00  


 If we divide p_A by : x - (-1.000) 


     -3.00    -20.00     +4.00   
     +0.00     +3.00    +17.00   
   ------------------------------
     -3.00    -17.00    +21.00   


 The synthetic division indicates that the quotien is :

   -3.00*x  -17.00  


 The synthetic division indicates that p_A(-1.000) = +21.000

 Press return to continue.
Cet article est issu de Wikibooks. Le texte est sous licence Creative Commons - Attribution - Partage dans les Mêmes. Des conditions supplémentaires peuvent s'appliquer aux fichiers multimédias.