Mathematical derivative daily (derivative articles)

English derivative is a derivative, is the rate of change

For example: length increases 3m per second, the orginal length is 10m we can express it in mathematical terms:

      L(t)' = 3 m/sec, L(t0) = 10 m.   

   Computer language to understand is this:

   L= 10

     for i in range(t) :

       L = L + 3 

 

Guess you like

Origin www.cnblogs.com/yyagrt/p/11267483.html