Help for this page

Select Code to Download


  1. or download this
    f'(x) = x * y
    g'(x) = x + y;
    
  2. or download this
    sub dydt {
       my ($t, $x, $y) = @_;
       return ($x * $y, $x + $y);
    }