COMPUTIONS USING SAGEMATH

DIPLOMA LEVEL MICRO-PROJECT REPORT

  1. Integral Calculus and Its Applications

Problem-1:

# Import the necessary library
from sage.all import *
# Define the variable
x = var('x')
# Define symbolic constants
a, b, c = var('a b c')
# Define the function
f = (a * (x^2) + b * x + c) / (x^3)
# Perform the integration
integral_f = integrate(f, x)
# Display the result
integral_f

output : – [ alog(x) – 1/2(2bx + c)/x^2 ]

Leave a Reply

Your email address will not be published. Required fields are marked *