Mathc initiation/a283
Apparence
Installer et compiler ces fichiers dans votre répertoire de travail.
c00c.c |
---|
/* ------------------------------------ */
/* Save as : c00d.c */
/* ------------------------------------ */
#include "x_hfile.h"
#include "fd.h"
/* ------------------------------------ */
int main(void)
{
double t = .5; // Try : 1. 2. PI PI/2
clrscrn();
printf(" Calculate the slope of the tangent of a polar curve\n\n\n"
" r : t-> %s \n\n"
" t = %+.2f \n\n\n", req, t);
printf(" x(t) = r(t) cos(t) \n"
" y(t) = r(t) sin(t)\n\n\n"
" dy dy/dt r(t) cos(t) + r'(t) sin(t) \n"
" -- = ----- = -------------------------- \n"
" dx dx/dt -r(t) sin(t) + r'(t) cos(t) \n\n\n");
stop();
clrscrn();
printf(" r : t-> %s \n\n"
" t = %+.2f \n\n\n", req, t);
printf(" Compute the derivative of r when t = %0.3f\n\n"
" with dy_dx(%0.3f) = %0.8f Verify -> %0.8f\n\n\n",
t, t, dy_dx(r, t, H),
tan(2.*t));
printf(" The equation of the tangente \n\n");
eq_tan(t,r);
stop();
return 0;
}
/* ------------------------------------ */
/* ------------------------------------ */
Exemple de sortie écran :
Calculate the slope of the tangent of a polar curve
r : t-> sin(t)
t = +0.50
x(t) = r(t) cos(t)
y(t) = r(t) sin(t)
dy dy/dt r(t) cos(t) + r'(t) sin(t)
-- = ----- = --------------------------
dx dx/dt -r(t) sin(t) + r'(t) cos(t)
Press return to continue.
Exemple de sortie écran :
r : t-> sin(t)
t = +0.50
Compute the derivative of r when t = 0.500
with dy_dx(0.500) = 1.55740773 Verify -> 1.55740772
The equation of the tangente
1.557407727*t -0.425407860
Press return to continue.