Skip to main content

WHY CALCULUS -II

 Consider the y=x^2 curve



    What is the area under the curve? If it is a rectangle or circle, we can easily calculate the area. But it is an irregular shape.

    Let us do it in the following way.



Let us draw small rectangles under the curves and fill the entire curve with rectangles. Let us now calculate the area of each rectangle and total all the areas.  That will give the area under the curve. The smaller the width of the rectangles, the more accurate the result will be. We can do this process easier by writing a small computer program. The width of the rectangle is taken as 0.01 or even 0.000001. We can get accurate results.

    What they have done before the arrival of computers. They invented calculus. The 'integration' operation in calculus gives an accurate answer.

    The equation of the curve is y=x^2. The integration of x^2 is  2x^3/3. Suppose, you want to find the area between x=0 to x=3. Apply these limits to the formula.

Applying lower limit, 2x^3/3 = 2*0^3/3 = 0

Apply upper limit , 2x^3/3=2*3^3/3= 2*27/3 =18 unit.

The area under the curve is 18-0=18 units.

    Hence they have devised so many beautiful formulas in calculus. That makes physics and engineering easy.

    The 'Differentiation' in calculus can also be explained in this way.

    The small python program for integration is given below.

  1. import math
  2. lower_limit =0
  3. upper_limit =3
  4. witdth=0 .00001
  5. total_area=0
  6. x=lower_limit
  7. while x is less than upper_limit:
  8.       x=x+width
  9.       y=x**2
  10.       area=width*y
  11.       total-area=total-area+area
  12. Print(total_area)

   You can give the equation of any curve in the high-lighted area and verify the result. We have to appreciate the math in this way without fearing it.

Comments

Popular posts from this blog

Your heart -you do not know

  Size and Location: The human heart is roughly the size of a clenched fist and is located slightly to the left of the center of the chest. Despite its relatively small size, the heart plays a crucial role in pumping blood throughout the entire body. Heartbeat Variability: The heart does not beat at a constant rate. The interval between heartbeats can vary, and this variability is considered a sign of a healthy heart. Factors such as breathing, emotions, and physical activity influence the heartbeat. Electrical Conduction: The heart's contractions are controlled by electrical impulses. The sinoatrial (SA) node, often called the "natural pacemaker," generates electrical signals that regulate the heartbeat and coordinate the pumping of blood. Blood Pumping Capacity: On average, the human heart pumps about 2,000 gallons (or 7,570 liters) of blood each day. Over a lifetime, this amounts to pumping enough blood to fill several Olympic-sized swimming pools. Heart Chambers and V...

THE WORK HORSE "="

    One cannot think of  a mathematical step without 'is equal to ' .  It balances right hand side and left hand side.  It aids simplification and manipulation of a mathematical expression. example: 2(A+B)  = C 2A+2B  = C         2A = C-2B           A = C-2B/ 2   In an electronic calculator,  the pressing of ' = " sign executes an asthmatic expression  or simply calculates.       In computer languages, it plays very important role.                                                                 A = B   When a computer looks at this expression, the value stored in the location named B is just transferred to the storage named A .  After execution both A and B will have the same value an...

How does your smart phone detect motion, steps, rotation, and location?

 How it works-1  An accelerometer in a smartphone is a microelectromechanical system (MEMS) device that measures acceleration and tilt. It works by detecting changes in motion by measuring the vibration or acceleration of the device. The accelerometer consists of a small mass suspended on a spring inside a sealed chamber. When the device is subjected to acceleration, the mass moves relative to the device, causing a change in capacitance that can be measured and processed by the smartphone's hardware. The accelerometer measures acceleration in three dimensions (x, y, and z) and provides data that the smartphone's software can use to determine the device's orientation, detect motion, and track changes in velocity and acceleration. The accelerometer is used for a variety of purposes in a smartphone, including screen rotation, motion tracking for games and fitness apps, and detecting the position of the device for navigation and location services. Additionally, it can be used t...