We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Functional Programming
- Introduction
- Area Under Curves and Volume of Revolving a Curve
- Discussions
Area Under Curves and Volume of Revolving a Curve
Area Under Curves and Volume of Revolving a Curve
Sort by
recency
|
122 Discussions
|
Please Login in order to post a comment
These topics highlight the elegance of calculus in modeling and solving practical problems across physics, engineering, and beyond. Winbuzz Betting ID
Area Under a Curve:
[ A = \int_{a}^{b} f(x) ,dx ]
It represents the integral of a function ( f(x) ) over an interval ([a, b]), giving the total area between the curve and the x-axis.
Volume of Revolution (about x-axis):
[ V = \pi \int_{a}^{b} [f(x)]^2 ,dx ]
This integral computes the volume of the solid formed by rotating ( f(x) ) around the x-axis.
How To Deal With Phone Harassment?
Ekbet 71 login
The concept of volumes of revolution is essential in many practical applications, such as engineering, where it helps in designing parts with rotational symmetry, like pipes, tanks, and lenses. Ekbet Lgin
scala:
Haskell concise solution solve :: Int -> Int -> [Int] -> [Int] -> [Double] solve l r as bs = [sum [(f as bs i) * dx|i<-range], sum [pi*(f as bs i)^^2 * dx|i<-range]] where dx = 0.001 fl = fromIntegral l fr = fromIntegral r range = [fl,fl+dx..fr] f as bs x = sum[(fromIntegral a)*(x^^b)|(a,b)<-zip as bs]