Sommaire


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

c00c.c
/* ---------------------------------- */
/* save as c00c.c                     */
/* ---------------------------------- */
#include "x_afile.h"
#include      "fc.h"
/* ---------------------------------- */
int main(void)
{
double i;

 clrscrn();
 printf(" The Ratio Test.                                       \n\n");
 printf(" Let S.a_n be positive-term series.                    \n\n");
 printf(" lim n->oo (a_(n+1)/a_n) = c < 1      The series converge\n");
 printf(" lim n->oo (a_(n+1)/a_n) = c > 1, +oo The series diverge \n");
 printf(" lim n->oo (a_(n+1)/a_n) = c = 1      Use another test \n\n");
 stop();

 clrscrn();
 printf(" a_n   : n-> %s         \n",     a_neq);
 printf(" a_n+1 : n-> %s       \n\n", a_npls1eq);
 printf(" c_n   : n-> a_n+1/a_n\n\n");

 for(i=1; i<10; i++)
     printf(" c_%.0f = %5.3f || \n", i, a_npls1(i)/a_n(i));
 
 printf(" \n\n\n"   
        " lim n->oo (a_(n+1)/a_n) = c < 1      The series converge\n\n");
 stop();

 return 0;
}
/* ---------------------------------- */
/* ---------------------------------- */


Exemple de sortie écran :

 The Ratio Test.                                       

 Let S.a_n be positive-term series.                    

 lim n->oo (a_(n+1)/a_n) = c < 1      The series converge
 lim n->oo (a_(n+1)/a_n) = c > 1, +oo The series diverge 
 lim n->oo (a_(n+1)/a_n) = c = 1      Use another test 

 Press return to continue.


Exemple de sortie écran :

 a_n   : n->   (n)!/(n**n)         
 a_n+1 : n-> (n+1)!/(n+1)**(n+1))       

 c_n   : n-> a_n+1/a_n

 c_1 = 0.500 || 
 c_2 = 0.444 || 
 c_3 = 0.422 || 
 c_4 = 0.410 || 
 c_5 = 0.402 || 
 c_6 = 0.397 || 
 c_7 = 0.393 || 
 c_8 = 0.390 || 
 c_9 = 0.387 || 
 


 lim n->oo (a_(n+1)/a_n) = c < 1      The series converge

 Press return to continue.