SlideShare a Scribd company logo
1 of 23
CAREER POINT UNIVERSITY
SUBMITTED TO :
Dr. SONA RAJ
SUBMITTED BY :
 ABDULQADIR EZZY (K12430)
 YASH MALHOTRA
 HIMANK MAHESHWARI
B.TECH/2ND SEM
COMPUTER SCIENCE
SECTION : A
REAL WORLD APPLICATION OF ALGEBRA
AND CALCULUS
CONTENTS
 INTRODUCTION OF LAPLACE TRANSFORMATION
 INTRODUCTION OF MATRIX AND DETERMINANTS
 INTRODUCTION OF CALCULUS
 EXAMPLE
 REAL WORLD APPLICATIONS
 APPLICATION RELATED TO BRANCH (CS)
 CONCLUSION
 REFERENCES
INTRODUCTION OF LAPLACE
 Transformation in mathematics deals with the conversion of one function to
another function that may not
be in the same domain.
 Laplace transform is a powerful transformation
tool, which literally transforms the original
differential equation into an elementary
algebraic expression. This latter can then
simply be transformed once again, into the
solution of the original problem.
 This transform is named after the mathematician and renowned astronomer Pierre
Simon Laplace who lived in France.
INTRODUCTION OF MATRIX
In mathematics , a matrix is a
rectangular array of numbers , symbols
or expressions arranged in rows and
columns.
INTRODUCTION OF CALCULUS
As is well known, the mathematical formalism of
calculus is widely and successfully used in natural
sciences . However, this does not mean that the
problem of validity of calculus is now completely
solved, or that the foundations of calculus are not in
need of formal-logical analysis. In my view, standard
calculus cannot be considered as absolute truth if
there is no formal-logical substantiation of this
calculus.
EXAMPLE:
MATRIX USE IN C-LANGUAGE
#include<stdio.h>
main()
int r , c;
clrscr();
for(r=1;r<=4;r++)
{
for(c=r;c<=4;c++)
}
printf(“*”);
}
printf(“n”);
}
}
OUTPUT OF PROGRAM
*****
***
**
*
 USING MATRICES IN REAL LIFE
The Golden Triangle is a large triangular region in the India.The Taj Mahal is one of the many
wonders that lie within the boundaries of this triangle. The triangle is formed by the imaginary lines
that connect the cities of New Delhi, Jaipur, and Agra. Use a determinant to estimate the area of the
Golden Triangle. The coordinates given are measured in miles.
E
W
N
S
Jaipur (0,0)
New Delhi (100,120)
Agra (140,20)
. .
.
SOLUTION
The approximate coordinates of the Golden Triangle’s three vertices are: (100,120), (140,20), and (0,0).
So the area of the region is as follows:
Area  
1
2
100 120 1
140 20 1
0 0 1
Area  
1
2
[(2000  0  0)  (0  0 16800)]
Area  7400
Hence, area of the Golden Triangle is about 7400 square miles.
 GRAPHIC USES OF MATRIX
MATHEMATICS
Graphic software uses matrix mathematics to process linear
transformations to render images. A square matrix, one with exactly as
many rows as columns, can represent a linear transformation of a
geometric object. For example, in the Cartesian X-Y plane, the
matrix reflects an object in the vertical Y axis. In a video game, this
would render the upside down mirror image of a castle reflected
in a lake.
If the video game has curved reflecting surfaces, such as a shiny
silver goblet, the linear transformation matrix would be more
complicated, to stretch or shrink the reflection.
CRAMER”S RULE FOR A 33
SYSTEM
Let A be the co-efficient matrix of the linear system: ax+by+cz= j, dx+ey+fz= k, and
gx+hy+iz=l.
IF det A ≠0, then the system has exactly one solution. The solution is:
x 
j b c
k e f
l h i
det A
, y 
a j c
d k f
g l i
det A
, z 
a b j
d e k
g h l
det A
EXAMPLE
The atomic weights of three compounds are shown. Use a linear system and Cramer’s rule to find the
atomic weights of carbon(C ), hydrogen(H), and oxygen(O).
Compound Formula Atomic weight
Methane CH4 16
Glycerol C3H8O3 92
Water H2O 18
1) Solving Ordinary Differential Equation
Problem:
Y" + aY' + bY = G(t) subject to the initial conditions Y(0) = A, Y' (0) = B
where a, b, A, B are constants.
Solution:
 Laplace transform of Y(t) be y(s), or, more concisely, y.
 Then solve for y in terms of s.
 Take the inverse transform, we obtain the desired solution Y.
APPLICATION OF LAPLACE TRANSFORMATION
2) Solving Partial Differential Equation
Problem: Solve
with the boundary conditions U(x, 0) = 3 sin 2πx, U(0, t) = 0 and U(1, t) = 0
where 0 < x < 1, t > 0.
Solution:
 Taking Laplace transform of both sides with respect to t,
 Substituting in the value of U(x, 0) and rearranging, we get
where u = u(x, s) = L[U(x, t].
 The general solution of (1) is
 Determine the values of c1 and c2. Taking the Laplace transform of those boundary conditions that involve
t, we obtain c1 =0, c2 = 0. Thus (2) becomes
 Inversion gives
3) Solving Electrical Circuits Problem
Problem: From the theory of electrical circuits we know,
where C is the capacitance, i = i(t) is the electric current , and v = v(t) is the voltage.
We have to find the correct expression for the complex impedance of a capacitor.
Solution:
 Taking the Laplace transform of this equation, we obtain,
Where, and
 Solving for V(s) we have
 We know,
So we find:
which is the correct expression for the complex impedance of a capacitor.
APPLICATION OF CALCULUS
An electrical engineer uses integration to determine
the exact length of power cable needed to connect
two substations that are miles apart. Because the
cable is hung from poles, it is constantly curving.
Calculus allows a precise figure to be determined.
OTHER APPLICATION OF CALCULUS
Space flight engineers frequently use calculus when
planning lengthy missions. To launch an exploratory
probe, they must consider the different orbiting
velocities of the Earth and the planet the probe is
targeted for, as well as other gravitational influences
like the sun and the moon. Calculus allows each of
those variables to be accurately taken into account.
Real world applications of calculus
With calculus, we have the ability to find the
effects of changing conditions on a system. By
studying these, you can learn how to control a
system to make it do what you want it to do.
Because of the ability to model and control
systems, calculus gives us extraordinary power
over the material world.
Biologists use differential calculus to determine
the exact rate of growth in a bacterial culture
when different variables such as temperature and
food source are changed. This research can help
increase the rate of growth of necessary bacteria,
or decrease the rate of growth for harmful and
potentially threatening bacteria.
APPLICATION IN CS
 ONE OF THE AREAS OF COMPUTER SCIENCE IN WHICH MATRIX
MULTIPLICATION IS PARTICULARLY USEFUL IS GRAPHICS , SINCE A
DIGITAL IMAGE IS BASICALLY A MATRIX TO BEGIN WITH : THE ROWS
AND COLUMNS OF THE MATRIX CORRESPONS TO ROWS AND COLUMNS
OF THE PIXELS , AND NUMERICAL ENTRIES CORRESPONDS TO THE
PIXEL’S COLOR VALUES.
 WE ARE USING INTEGRATED CIRCUITS INSODE THE CPU. LAPLACE
TRANSFORMATION HELP US TO FIND OUT THE CURRENT AND SOME
CRITERIA FOR THE ANALYSING THE CIRCUITS.
 USES OF CALCULUS IN COMPUTER SCIENCE IS CREATING VISUALS OR
GRAPHS OFTEN THE GRAPHSVISUALS ARE 3D. THEY ARE USED OFTEN
FOR VIDEO GAMES,ESPECIALLY PHYSIC ENGINES,PHYSIC ENGINES
DEFINE THE GAME SUCH AS GRAVITY,FICTION ETC.
CONLUSION
OVERALL THE CONCLUSION IS ALGEBRA AND
CALCULUS IS USED IN VARIOUS FIELDS LIKE IN
VARIOUS ENGINEERING FIELDS , REAL WORLD
APPLICATIONS , SOLVING VARIOUS EQUATIONS
IN MATHS.
REFRENCES
www.quora.com
www.functionspace.com
www.teach-nology.com
www.m.reddil.com
www.academia.edu
• Books- Das H.K
• N.P. Bali
• introduction to laplace transformation
• introduction to matirx
Applications of algebra and calculus

More Related Content

What's hot

systems of linear equations & matrices
systems of linear equations & matricessystems of linear equations & matrices
systems of linear equations & matricesStudent
 
02 linear algebra
02 linear algebra02 linear algebra
02 linear algebraRonald Teo
 
Linear Algebra: Application to Chemistry
Linear Algebra: Application to ChemistryLinear Algebra: Application to Chemistry
Linear Algebra: Application to Chemistryrasen58
 
Intro & Applications of Discrete Math
Intro & Applications of Discrete MathIntro & Applications of Discrete Math
Intro & Applications of Discrete MathBilal Khan
 
Application of matrices in Daily life
Application of matrices in Daily lifeApplication of matrices in Daily life
Application of matrices in Daily lifeshubham mishra
 
vector space and subspace
vector space and subspacevector space and subspace
vector space and subspace2461998
 
Group Theory and Its Application: Beamer Presentation (PPT)
Group Theory and Its Application:   Beamer Presentation (PPT)Group Theory and Its Application:   Beamer Presentation (PPT)
Group Theory and Its Application: Beamer Presentation (PPT)SIRAJAHMAD36
 
Infinite sequence and series
Infinite sequence and seriesInfinite sequence and series
Infinite sequence and seriesBhavik A Shah
 
Application Of Linear Algebra in Earth Sciences
Application Of Linear Algebra in Earth SciencesApplication Of Linear Algebra in Earth Sciences
Application Of Linear Algebra in Earth SciencesMUHAMMADTALHAREHMAN3
 
Introduction and Applications of Discrete Mathematics
Introduction and Applications of Discrete MathematicsIntroduction and Applications of Discrete Mathematics
Introduction and Applications of Discrete Mathematicsblaircomp2003
 
Application of linear algebra in cse
Application of linear algebra in cseApplication of linear algebra in cse
Application of linear algebra in cseArnob Khan
 
Matrix basic operations
Matrix basic operationsMatrix basic operations
Matrix basic operationsJessica Garcia
 
Differential calculus
Differential calculusDifferential calculus
Differential calculusShubham .
 
Eigen values and eigenvectors
Eigen values and eigenvectorsEigen values and eigenvectors
Eigen values and eigenvectorsAmit Singh
 
APPLICATION OF LINEAR ALGEBRA IN ECONOMICS
APPLICATION OF LINEAR ALGEBRA IN ECONOMICSAPPLICATION OF LINEAR ALGEBRA IN ECONOMICS
APPLICATION OF LINEAR ALGEBRA IN ECONOMICSAmit Garg
 

What's hot (20)

systems of linear equations & matrices
systems of linear equations & matricessystems of linear equations & matrices
systems of linear equations & matrices
 
02 linear algebra
02 linear algebra02 linear algebra
02 linear algebra
 
Linear Algebra: Application to Chemistry
Linear Algebra: Application to ChemistryLinear Algebra: Application to Chemistry
Linear Algebra: Application to Chemistry
 
Intro & Applications of Discrete Math
Intro & Applications of Discrete MathIntro & Applications of Discrete Math
Intro & Applications of Discrete Math
 
Vector space
Vector spaceVector space
Vector space
 
Application of matrices in Daily life
Application of matrices in Daily lifeApplication of matrices in Daily life
Application of matrices in Daily life
 
vector space and subspace
vector space and subspacevector space and subspace
vector space and subspace
 
Numerical analysis ppt
Numerical analysis pptNumerical analysis ppt
Numerical analysis ppt
 
Eigen value and vectors
Eigen value and vectorsEigen value and vectors
Eigen value and vectors
 
Group Theory and Its Application: Beamer Presentation (PPT)
Group Theory and Its Application:   Beamer Presentation (PPT)Group Theory and Its Application:   Beamer Presentation (PPT)
Group Theory and Its Application: Beamer Presentation (PPT)
 
Infinite sequence and series
Infinite sequence and seriesInfinite sequence and series
Infinite sequence and series
 
Application Of Linear Algebra in Earth Sciences
Application Of Linear Algebra in Earth SciencesApplication Of Linear Algebra in Earth Sciences
Application Of Linear Algebra in Earth Sciences
 
Application of matrices in real life
Application of matrices in real lifeApplication of matrices in real life
Application of matrices in real life
 
Introduction and Applications of Discrete Mathematics
Introduction and Applications of Discrete MathematicsIntroduction and Applications of Discrete Mathematics
Introduction and Applications of Discrete Mathematics
 
Application of linear algebra in cse
Application of linear algebra in cseApplication of linear algebra in cse
Application of linear algebra in cse
 
Matrix basic operations
Matrix basic operationsMatrix basic operations
Matrix basic operations
 
Differential calculus
Differential calculusDifferential calculus
Differential calculus
 
Matrix in software engineering
Matrix in software engineeringMatrix in software engineering
Matrix in software engineering
 
Eigen values and eigenvectors
Eigen values and eigenvectorsEigen values and eigenvectors
Eigen values and eigenvectors
 
APPLICATION OF LINEAR ALGEBRA IN ECONOMICS
APPLICATION OF LINEAR ALGEBRA IN ECONOMICSAPPLICATION OF LINEAR ALGEBRA IN ECONOMICS
APPLICATION OF LINEAR ALGEBRA IN ECONOMICS
 

Viewers also liked

Application of calculus in real life.
Application of calculus in real life.Application of calculus in real life.
Application of calculus in real life.University of Potsdam
 
Applications laplace transform
Applications laplace transformApplications laplace transform
Applications laplace transformMuhammad Fadli
 
Using Laplace Transforms to Solve Differential Equations
Using Laplace Transforms to Solve Differential EquationsUsing Laplace Transforms to Solve Differential Equations
Using Laplace Transforms to Solve Differential EquationsGeorge Stevens
 
Unit viii
Unit viiiUnit viii
Unit viiimrecedu
 
Forma escalonada de una matriz
Forma escalonada de una matrizForma escalonada de una matriz
Forma escalonada de una matrizalgebra
 
Ejercicios matriz asociada a una composicion de funciones
Ejercicios matriz asociada a una composicion de funcionesEjercicios matriz asociada a una composicion de funciones
Ejercicios matriz asociada a una composicion de funcionesalgebra
 
Presentation on laplace transforms
Presentation on laplace transformsPresentation on laplace transforms
Presentation on laplace transformsHimel Himo
 
Application of Calculus in Real World
Application of Calculus in Real World Application of Calculus in Real World
Application of Calculus in Real World milanmath
 
Application of integral calculus
Application of integral calculusApplication of integral calculus
Application of integral calculusHabibur Rahman
 
Chapter 2 Laplace Transform
Chapter 2 Laplace TransformChapter 2 Laplace Transform
Chapter 2 Laplace TransformZakiah Saad
 
Laplace Transformation & Its Application
Laplace Transformation & Its ApplicationLaplace Transformation & Its Application
Laplace Transformation & Its ApplicationChandra Kundu
 
Genetics and evolution
Genetics and evolutionGenetics and evolution
Genetics and evolutionAnand P P
 
Matrices conmutable, idempotente, nilpotente, involutiva, elemental y equival...
Matrices conmutable, idempotente, nilpotente, involutiva, elemental y equival...Matrices conmutable, idempotente, nilpotente, involutiva, elemental y equival...
Matrices conmutable, idempotente, nilpotente, involutiva, elemental y equival...algebra
 
Project application of derivatives ppt.docx
Project application of derivatives ppt.docxProject application of derivatives ppt.docx
Project application of derivatives ppt.docxTaraRocheleDaugherty
 
A Course of Calculus for IT-Students
A Course of Calculus for IT-StudentsA Course of Calculus for IT-Students
A Course of Calculus for IT-Studentsmetamath
 

Viewers also liked (20)

Application of calculus in real life.
Application of calculus in real life.Application of calculus in real life.
Application of calculus in real life.
 
Laplace transformations
Laplace transformationsLaplace transformations
Laplace transformations
 
Applications laplace transform
Applications laplace transformApplications laplace transform
Applications laplace transform
 
Using Laplace Transforms to Solve Differential Equations
Using Laplace Transforms to Solve Differential EquationsUsing Laplace Transforms to Solve Differential Equations
Using Laplace Transforms to Solve Differential Equations
 
Lambda calculus
Lambda calculusLambda calculus
Lambda calculus
 
Unit viii
Unit viiiUnit viii
Unit viii
 
Forma escalonada de una matriz
Forma escalonada de una matrizForma escalonada de una matriz
Forma escalonada de una matriz
 
Ejercicios matriz asociada a una composicion de funciones
Ejercicios matriz asociada a una composicion de funcionesEjercicios matriz asociada a una composicion de funciones
Ejercicios matriz asociada a una composicion de funciones
 
Calculus
CalculusCalculus
Calculus
 
Presentation on laplace transforms
Presentation on laplace transformsPresentation on laplace transforms
Presentation on laplace transforms
 
Application of Calculus in Real World
Application of Calculus in Real World Application of Calculus in Real World
Application of Calculus in Real World
 
Application of integral calculus
Application of integral calculusApplication of integral calculus
Application of integral calculus
 
Laplace transformation
Laplace transformationLaplace transformation
Laplace transformation
 
Chapter 2 Laplace Transform
Chapter 2 Laplace TransformChapter 2 Laplace Transform
Chapter 2 Laplace Transform
 
Laplace Transformation & Its Application
Laplace Transformation & Its ApplicationLaplace Transformation & Its Application
Laplace Transformation & Its Application
 
Genetics and evolution
Genetics and evolutionGenetics and evolution
Genetics and evolution
 
Matrices conmutable, idempotente, nilpotente, involutiva, elemental y equival...
Matrices conmutable, idempotente, nilpotente, involutiva, elemental y equival...Matrices conmutable, idempotente, nilpotente, involutiva, elemental y equival...
Matrices conmutable, idempotente, nilpotente, involutiva, elemental y equival...
 
Laplace transforms
Laplace transformsLaplace transforms
Laplace transforms
 
Project application of derivatives ppt.docx
Project application of derivatives ppt.docxProject application of derivatives ppt.docx
Project application of derivatives ppt.docx
 
A Course of Calculus for IT-Students
A Course of Calculus for IT-StudentsA Course of Calculus for IT-Students
A Course of Calculus for IT-Students
 

Similar to Applications of algebra and calculus

Linear regression [Theory and Application (In physics point of view) using py...
Linear regression [Theory and Application (In physics point of view) using py...Linear regression [Theory and Application (In physics point of view) using py...
Linear regression [Theory and Application (In physics point of view) using py...ANIRBANMAJUMDAR18
 
ppt M3 Laplace Transform.pdf
ppt  M3  Laplace Transform.pdfppt  M3  Laplace Transform.pdf
ppt M3 Laplace Transform.pdfOSMANGONI35
 
IGARSS11_HongboSu_ver3.ppt
IGARSS11_HongboSu_ver3.pptIGARSS11_HongboSu_ver3.ppt
IGARSS11_HongboSu_ver3.pptgrssieee
 
APPLICATION OF HIGHER ORDER DIFFERENTIAL EQUATIONS
APPLICATION OF HIGHER ORDER DIFFERENTIAL EQUATIONSAPPLICATION OF HIGHER ORDER DIFFERENTIAL EQUATIONS
APPLICATION OF HIGHER ORDER DIFFERENTIAL EQUATIONSAYESHA JAVED
 
Computation of electromagnetic_fields_scattered_from_dielectric_objects_of_un...
Computation of electromagnetic_fields_scattered_from_dielectric_objects_of_un...Computation of electromagnetic_fields_scattered_from_dielectric_objects_of_un...
Computation of electromagnetic_fields_scattered_from_dielectric_objects_of_un...Alexander Litvinenko
 
Electromagnetic theory EMT lecture 1
Electromagnetic theory EMT lecture 1Electromagnetic theory EMT lecture 1
Electromagnetic theory EMT lecture 1Ali Farooq
 
Some Engg. Applications of Matrices and Partial Derivatives
Some Engg. Applications of Matrices and Partial DerivativesSome Engg. Applications of Matrices and Partial Derivatives
Some Engg. Applications of Matrices and Partial DerivativesSanjaySingh011996
 
Anomalous Diffusion Through Homopolar Membrane: One-Dimensional Model_ Crimso...
Anomalous Diffusion Through Homopolar Membrane: One-Dimensional Model_ Crimso...Anomalous Diffusion Through Homopolar Membrane: One-Dimensional Model_ Crimso...
Anomalous Diffusion Through Homopolar Membrane: One-Dimensional Model_ Crimso...Crimsonpublishers-Mechanicalengineering
 

Similar to Applications of algebra and calculus (20)

Linear regression [Theory and Application (In physics point of view) using py...
Linear regression [Theory and Application (In physics point of view) using py...Linear regression [Theory and Application (In physics point of view) using py...
Linear regression [Theory and Application (In physics point of view) using py...
 
04_AJMS_453_22_compressed.pdf
04_AJMS_453_22_compressed.pdf04_AJMS_453_22_compressed.pdf
04_AJMS_453_22_compressed.pdf
 
ppt M3 Laplace Transform.pdf
ppt  M3  Laplace Transform.pdfppt  M3  Laplace Transform.pdf
ppt M3 Laplace Transform.pdf
 
IGARSS11_HongboSu_ver3.ppt
IGARSS11_HongboSu_ver3.pptIGARSS11_HongboSu_ver3.ppt
IGARSS11_HongboSu_ver3.ppt
 
APPLICATION OF HIGHER ORDER DIFFERENTIAL EQUATIONS
APPLICATION OF HIGHER ORDER DIFFERENTIAL EQUATIONSAPPLICATION OF HIGHER ORDER DIFFERENTIAL EQUATIONS
APPLICATION OF HIGHER ORDER DIFFERENTIAL EQUATIONS
 
Chapter26
Chapter26Chapter26
Chapter26
 
Yan maturita 2021_
Yan maturita 2021_Yan maturita 2021_
Yan maturita 2021_
 
Yan maturita 2021
Yan maturita 2021Yan maturita 2021
Yan maturita 2021
 
Charge Discreteness in Extended Quantum Circuits
 Charge Discreteness in Extended Quantum Circuits  Charge Discreteness in Extended Quantum Circuits
Charge Discreteness in Extended Quantum Circuits
 
Computation of electromagnetic_fields_scattered_from_dielectric_objects_of_un...
Computation of electromagnetic_fields_scattered_from_dielectric_objects_of_un...Computation of electromagnetic_fields_scattered_from_dielectric_objects_of_un...
Computation of electromagnetic_fields_scattered_from_dielectric_objects_of_un...
 
Andreev levels
Andreev levelsAndreev levels
Andreev levels
 
Electromagnetic theory EMT lecture 1
Electromagnetic theory EMT lecture 1Electromagnetic theory EMT lecture 1
Electromagnetic theory EMT lecture 1
 
Some Engg. Applications of Matrices and Partial Derivatives
Some Engg. Applications of Matrices and Partial DerivativesSome Engg. Applications of Matrices and Partial Derivatives
Some Engg. Applications of Matrices and Partial Derivatives
 
Laplace transform
Laplace transformLaplace transform
Laplace transform
 
Manu maths ppt
Manu maths pptManu maths ppt
Manu maths ppt
 
Chua's circuit
Chua's circuitChua's circuit
Chua's circuit
 
HybridUAV
HybridUAVHybridUAV
HybridUAV
 
APPLICATION OF NUMERICAL METHODS IN SMALL SIZE
APPLICATION OF NUMERICAL METHODS IN SMALL SIZEAPPLICATION OF NUMERICAL METHODS IN SMALL SIZE
APPLICATION OF NUMERICAL METHODS IN SMALL SIZE
 
Anomalous Diffusion Through Homopolar Membrane: One-Dimensional Model_ Crimso...
Anomalous Diffusion Through Homopolar Membrane: One-Dimensional Model_ Crimso...Anomalous Diffusion Through Homopolar Membrane: One-Dimensional Model_ Crimso...
Anomalous Diffusion Through Homopolar Membrane: One-Dimensional Model_ Crimso...
 
Online Signals and Systems Assignment Help
Online Signals and Systems Assignment HelpOnline Signals and Systems Assignment Help
Online Signals and Systems Assignment Help
 

Recently uploaded

Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2RajaP95
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .Satyam Kumar
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)dollysharma2066
 

Recently uploaded (20)

Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
young call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Serviceyoung call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Service
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
 

Applications of algebra and calculus

  • 1. CAREER POINT UNIVERSITY SUBMITTED TO : Dr. SONA RAJ SUBMITTED BY :  ABDULQADIR EZZY (K12430)  YASH MALHOTRA  HIMANK MAHESHWARI B.TECH/2ND SEM COMPUTER SCIENCE SECTION : A REAL WORLD APPLICATION OF ALGEBRA AND CALCULUS
  • 2. CONTENTS  INTRODUCTION OF LAPLACE TRANSFORMATION  INTRODUCTION OF MATRIX AND DETERMINANTS  INTRODUCTION OF CALCULUS  EXAMPLE  REAL WORLD APPLICATIONS  APPLICATION RELATED TO BRANCH (CS)  CONCLUSION  REFERENCES
  • 3. INTRODUCTION OF LAPLACE  Transformation in mathematics deals with the conversion of one function to another function that may not be in the same domain.  Laplace transform is a powerful transformation tool, which literally transforms the original differential equation into an elementary algebraic expression. This latter can then simply be transformed once again, into the solution of the original problem.  This transform is named after the mathematician and renowned astronomer Pierre Simon Laplace who lived in France.
  • 4. INTRODUCTION OF MATRIX In mathematics , a matrix is a rectangular array of numbers , symbols or expressions arranged in rows and columns.
  • 5. INTRODUCTION OF CALCULUS As is well known, the mathematical formalism of calculus is widely and successfully used in natural sciences . However, this does not mean that the problem of validity of calculus is now completely solved, or that the foundations of calculus are not in need of formal-logical analysis. In my view, standard calculus cannot be considered as absolute truth if there is no formal-logical substantiation of this calculus.
  • 6. EXAMPLE: MATRIX USE IN C-LANGUAGE #include<stdio.h> main() int r , c; clrscr(); for(r=1;r<=4;r++) { for(c=r;c<=4;c++) } printf(“*”); } printf(“n”); } }
  • 8.  USING MATRICES IN REAL LIFE The Golden Triangle is a large triangular region in the India.The Taj Mahal is one of the many wonders that lie within the boundaries of this triangle. The triangle is formed by the imaginary lines that connect the cities of New Delhi, Jaipur, and Agra. Use a determinant to estimate the area of the Golden Triangle. The coordinates given are measured in miles. E W N S Jaipur (0,0) New Delhi (100,120) Agra (140,20) . . .
  • 9. SOLUTION The approximate coordinates of the Golden Triangle’s three vertices are: (100,120), (140,20), and (0,0). So the area of the region is as follows: Area   1 2 100 120 1 140 20 1 0 0 1 Area   1 2 [(2000  0  0)  (0  0 16800)] Area  7400 Hence, area of the Golden Triangle is about 7400 square miles.
  • 10.  GRAPHIC USES OF MATRIX MATHEMATICS Graphic software uses matrix mathematics to process linear transformations to render images. A square matrix, one with exactly as many rows as columns, can represent a linear transformation of a geometric object. For example, in the Cartesian X-Y plane, the matrix reflects an object in the vertical Y axis. In a video game, this would render the upside down mirror image of a castle reflected in a lake. If the video game has curved reflecting surfaces, such as a shiny silver goblet, the linear transformation matrix would be more complicated, to stretch or shrink the reflection.
  • 11. CRAMER”S RULE FOR A 33 SYSTEM Let A be the co-efficient matrix of the linear system: ax+by+cz= j, dx+ey+fz= k, and gx+hy+iz=l. IF det A ≠0, then the system has exactly one solution. The solution is: x  j b c k e f l h i det A , y  a j c d k f g l i det A , z  a b j d e k g h l det A
  • 12. EXAMPLE The atomic weights of three compounds are shown. Use a linear system and Cramer’s rule to find the atomic weights of carbon(C ), hydrogen(H), and oxygen(O). Compound Formula Atomic weight Methane CH4 16 Glycerol C3H8O3 92 Water H2O 18
  • 13. 1) Solving Ordinary Differential Equation Problem: Y" + aY' + bY = G(t) subject to the initial conditions Y(0) = A, Y' (0) = B where a, b, A, B are constants. Solution:  Laplace transform of Y(t) be y(s), or, more concisely, y.  Then solve for y in terms of s.  Take the inverse transform, we obtain the desired solution Y. APPLICATION OF LAPLACE TRANSFORMATION
  • 14. 2) Solving Partial Differential Equation Problem: Solve with the boundary conditions U(x, 0) = 3 sin 2πx, U(0, t) = 0 and U(1, t) = 0 where 0 < x < 1, t > 0. Solution:  Taking Laplace transform of both sides with respect to t,  Substituting in the value of U(x, 0) and rearranging, we get where u = u(x, s) = L[U(x, t].  The general solution of (1) is  Determine the values of c1 and c2. Taking the Laplace transform of those boundary conditions that involve t, we obtain c1 =0, c2 = 0. Thus (2) becomes  Inversion gives
  • 15. 3) Solving Electrical Circuits Problem Problem: From the theory of electrical circuits we know, where C is the capacitance, i = i(t) is the electric current , and v = v(t) is the voltage. We have to find the correct expression for the complex impedance of a capacitor. Solution:  Taking the Laplace transform of this equation, we obtain, Where, and  Solving for V(s) we have  We know, So we find: which is the correct expression for the complex impedance of a capacitor.
  • 16. APPLICATION OF CALCULUS An electrical engineer uses integration to determine the exact length of power cable needed to connect two substations that are miles apart. Because the cable is hung from poles, it is constantly curving. Calculus allows a precise figure to be determined.
  • 17. OTHER APPLICATION OF CALCULUS Space flight engineers frequently use calculus when planning lengthy missions. To launch an exploratory probe, they must consider the different orbiting velocities of the Earth and the planet the probe is targeted for, as well as other gravitational influences like the sun and the moon. Calculus allows each of those variables to be accurately taken into account.
  • 18. Real world applications of calculus With calculus, we have the ability to find the effects of changing conditions on a system. By studying these, you can learn how to control a system to make it do what you want it to do. Because of the ability to model and control systems, calculus gives us extraordinary power over the material world.
  • 19. Biologists use differential calculus to determine the exact rate of growth in a bacterial culture when different variables such as temperature and food source are changed. This research can help increase the rate of growth of necessary bacteria, or decrease the rate of growth for harmful and potentially threatening bacteria.
  • 20. APPLICATION IN CS  ONE OF THE AREAS OF COMPUTER SCIENCE IN WHICH MATRIX MULTIPLICATION IS PARTICULARLY USEFUL IS GRAPHICS , SINCE A DIGITAL IMAGE IS BASICALLY A MATRIX TO BEGIN WITH : THE ROWS AND COLUMNS OF THE MATRIX CORRESPONS TO ROWS AND COLUMNS OF THE PIXELS , AND NUMERICAL ENTRIES CORRESPONDS TO THE PIXEL’S COLOR VALUES.  WE ARE USING INTEGRATED CIRCUITS INSODE THE CPU. LAPLACE TRANSFORMATION HELP US TO FIND OUT THE CURRENT AND SOME CRITERIA FOR THE ANALYSING THE CIRCUITS.  USES OF CALCULUS IN COMPUTER SCIENCE IS CREATING VISUALS OR GRAPHS OFTEN THE GRAPHSVISUALS ARE 3D. THEY ARE USED OFTEN FOR VIDEO GAMES,ESPECIALLY PHYSIC ENGINES,PHYSIC ENGINES DEFINE THE GAME SUCH AS GRAVITY,FICTION ETC.
  • 21. CONLUSION OVERALL THE CONCLUSION IS ALGEBRA AND CALCULUS IS USED IN VARIOUS FIELDS LIKE IN VARIOUS ENGINEERING FIELDS , REAL WORLD APPLICATIONS , SOLVING VARIOUS EQUATIONS IN MATHS.
  • 22. REFRENCES www.quora.com www.functionspace.com www.teach-nology.com www.m.reddil.com www.academia.edu • Books- Das H.K • N.P. Bali • introduction to laplace transformation • introduction to matirx