This commit is contained in:
Santiago Lo Coco 2022-04-19 07:48:03 -03:00
parent b01b910188
commit 22a31f7637
3 changed files with 16 additions and 17 deletions

View File

@ -1,3 +1,2 @@
fun f = f(3) * x * 4 + 3; fun f = f(3) * x * 4 + 3;
fun g = f(3) + f'(3)*(x-3) + f''(3)/2 * (x-3)^2 + f'''(3) / 6 * (x-3)^3 + f''''(3) / 24 * (x-3)^4; fun g = f(3) + f'(3)*(x-3) + f''(3)/2 * (x-3)^2 + f'''(3) / 6 * (x-3)^3 + f''''(3) / 24 * (x-3)^4;
fun g = f(2) + integrate(derivative())