Friday, April 5, 2019

Study On The Applications Of Numerical Analysis Computer Science Essay

Study On The Applications Of Numerical Analysis computer Science EssayIt finds applications in every last(predicate) cranial orbits of engineering and the physical sciences, but in the 21stcentury, the spirit sciences and even the arts father adopted fragments of scientific computations.Ordinary differential equationsappear in themovement of heavenly bodies (planets, stars and galaxies) optimisationoccurs in portfolio management numeral elongate algebrais important for data compendstochastic differential equationsandMarkov chains ar essential in simulating living cells for medicine and biology.Before the advent of modern computing machines quantitative methods often depended on handinterpolationin large printed tables. Since the mid 20th century, computers calculate the required services instead. The interpolationalgorithms notwithstanding may be used as part of the softw be for solvingdifferential equations.INTRODUCTION TO numeral ANALYSIS AND METHODSThe overall goa l of the field of mathematical analysis is the design and analysis of techniques to give penny-pinching but accurate resolves to hard troubles, the variety of which is suggested by the following.Advanced numerical methods atomic number 18 essential in makingnumerical weather predictionfeasible.Computing the trajectory of a spacecraft requires the accurate numerical solution of a system ofordinary differential equations.Car companies croupe improve the crash precaution of their vehicles by using computer simulations of car crashes. Such simulations essentially consist of solving incomplete differential equationsnumerically.Hedge funds(private investment funds) use slams from all fields of numerical analysis to calculate the evaluate of stocks and derivative instruments to a greater extent precisely than other market participants.Airlines use sophisticated optimization algorithms to decide ticket prices, planing machine and crew assignments and fuel needs. This field is w ithal calledoperations research.Insurance companies use numerical programs foractuarialanalysis.The consist of this section outlines several important themes of numerical analysis.History of Numerical AnalysisThe field of numerical analysis predates the invention of modern computers by many centuries. linear interpolationwas already in use to a greater extent than 2000 years ago. Many great mathematicians of the past were preoccupied by numerical analysis, as is obvious from the call of important algorithms likeNewtons method,Lagrange interpolation polynomial,Gaussian elimination, orEulers method.To facilitate computations by hand, large books were produced with formulas and tables of data such as interpolation points and function coefficients. Using these tables, often calculated out to 16 decimal places or more for some functions, one could look up values to plug into the formulas habituated and achieve very profound numerical estimates of some functions. The canonical work in the field is theNISTpublication edited byAbramowitz and Stegun, a 1000-plus page book of a very large spot of commonly used formulas and functions and their values at many points. The function values atomic number 18 no extended very useful when a computer is available, but the large listing of formulas can still be very handy.Themechanical calculatorwas also developed as a tool for hand computation. These calculators evolved into electronic computers in the 1940s, and it was then found that these computers were also useful for administrative purposes. But the invention of the computer also influenced the field of numerical analysis, since now longer and more complicated calculations could be done.Direct and iterative methodsDirect methods compute the solution to a riddle in a delimited build of steps. These methods would give the precise answer if they were performed ininfinite clearcutness arithmetic. Examples accommodateGaussian elimination, theQRfactorization method for solvingsystems of linear equations, and thesimplex methodoflinear programming. In practice,finite precisionis used and the result is an approach of the true solution (assumingstability).In contrast to straight methods,iterative methodsare not expected to terminate in a number of steps. Starting from an sign guess, iterative methods form successive approximations thatconvergeto the exact solution only in the limit. A intersection testis specified in order to decide when a sufficiently accurate solution has (hopefully) been found. point using infinite precision arithmetic these methods would not reach the solution within a finite number of steps (in general). Examples includeNewtons method, thebisection method, andJacobi iteration. In computational matrix algebra, iterative methods are generally mandatory for large problems.Iterative methods are more common than direct methods in numerical analysis. Some methods are direct in principle but are usually used as though they were not , e.g.GMRESand the combine slope method. For these methods the number of steps needed to obtain the exact solution is so large that an approximation is accepted in the same manner as for an iterative method.DiscretizationFurthermore, continuous problems essential sometimes be replaced by a discrete problem whose solution is cognize to approximate that of the continuous problem this action is calleddiscretization. For example, the solution of adifferential equationis a function. This function essential be represented by a finite amount of data, for instance by its value at a finite number of points at its domain, even though this domain is a continuum.Different Areas And Methods under Numerical AnalysisThe field of numerical analysis is divided into different disciplines according to the problem that is to be work.One of the simplest problems is the evaluation of a function at a given point. The most straightforward approach, of just plugging in the number in the formula is some times not very efficient. For polynomials, a better approach is using theHorner scheme, since it reduces the necessary number of multiplications and additions. Generally, it is important to estimate and controlround-off errorsarising from the use offloating pointarithmetic.Interpolation, extrapolation, and regressionInterpolationsolves the following problem given the value of some unknown function at a number of points, what value does that function have at some other point between the given points?Extrapolationis very similar to interpolation, chuck out that now we want to find the value of the unknown function at a point which is out of doors the given points.Regressionis also similar, but it takes into account that the data is imprecise. Given some points, and a metre of the value of some function at these points (with an error), we want to determine the unknown function. Theleast squares-method is one favorite way to achieve this.Solving equations and systems of equationsAno ther fundamental problem is computing the solution of some given equation. Two cases are commonly distinguished, depending on whether the equation is linear or not. For instance, the equation2x+ 5 = 3is linear while22+ 5 = 3is not.Much effort has been put in the organic evolution of methods for solvingsystems of linear equations. Standard direct methods, i.e., methods that use somematrix decompositionareGaussian elimination,LU decomposition,Cholesky decompositionforsymmetric(orhermitian) andpositive-definite matrix, andQR decompositionfor non-square matrices.Iterative methodssuch as theJacobi method,Gauss-Seidel method,successive over-relaxationandconjugate gradient methodare usually preferred for large systems.Root-finding algorithmsare used to solve nonlinear equations (they are so named since a root of a function is an argument for which the function yields zero). If the function isdifferentiableand the derivative is known, thenNewtons methodis a popular choice.Linearizationis a nother technique for solving nonlinear equations.Solving eigenvalue or strange value problemsSeveral important problems can be phrased in terms ofeigenvalue decompositionsorsingular value decompositions. For instance, thespectral image compressionalgorithmis based on the singular value decomposition. The corresponding tool in statistics is calledprincipal component analysis.OptimizationOptimization problems ask for the point at which a given function is maximized (or minimized). Often, the point also has to satisfy someconstraints.The field of optimization is further split in several subfields, depending on the form of the objective function and the constraint. For instance,linear programmingdeals with the case that both the objective function and the constraints are linear. A famous method in linear programming is thesimplex method.The method ofLagrange multiplierscan be used to reduce optimization problems with constraints to unconstrained optimization problems.Evaluating integra lsNumerical integration, in some instances also known as numericalquadrature, asks for the value of a definiteintegral. Popular methods use one of theNewton-Cotes formulas(like the midpoint restrain orSimpsons rule) orGaussian quadrature. These methods rely on a divide and conquer strategy, whereby an integral on a relatively large set is broken down into integrals on smaller sets. In higher(prenominal) dimensions, where these methods become prohibitively expensive in terms of computational effort, one may use monte Carloorquasi-Monte Carlo methods(seeMonte Carlo integration), or, in modestly large dimensions, the method ofsparse grids.Differential equationsNumerical analysis is also concerned with computing (in an approximate way) the solution ofdifferential equations, both ordinary differential equations andpartial differential equations.Partial differential equations are solved by first discretizing the equation, bringing it into a finite-dimensional subspace. This can be done b y afinite element method, afinite differencemethod, or (particularly in engineering) afinite volume method. The theoretical justification of these methods often involves theorems fromfunctional analysis. This reduces the problem to the solution of an algebraic equation.Applications Of Numerical Analysis Methods and Its Real Life Implementations, Advantages Etc.NEWTON RAPHSON METHODORDER OF CONVERGENCE 2 ADVANTAGES 1. The advantage of the method is its order of intersection point is quadratic. 2. Convergence rate is one of the fastest when it does converges 3. Linear convergence near multiple grow.REGULA FALSI METHOD ORDER OF CONVERGENCE 1.618 ADVANTAGES 1. Better-than-linear convergence near simple root 2. Linear convergence near multiple root 3. No derivative needed DISADVANTAGES 1. Iterates may diverge 2. No practical rigorous error boundGAUSS ELIMINATION METHODADVANTAGESIt is the direct method of solving linear simultaneous equations. 2. It uses back substitution. 3. It is re duced to equivalent upper triangular matrix. 1. It requires right vectors to be known.GAUSS JORDAN ADVANTAGES 1. It is direct method. 2. The roots of the equation are found immediately without using back substitution.. It is reduced to equivalent identity matrix. The extra steps increase round off errors. 2. It requires right vectors to be known.GAUSS JACOBI METHOD1. It is iterative method. 2. The system of equations must be diagonally dominant. 3. It suits better for large numbers of unknowns 4. It is self correcting method.GAUSS SEIDEL METHOD1. It is iterative method. 2. The system of equations must be diagonally dominant. 3. It suits better for large numbers of unknowns 4. It is self correcting method. 5. The number of iterations is less than Jacobi method.Real life ApplicationsArea of mathematics and computer science.Applications of algebraGeometryCalculusVariables which vary continuously.Problems(application subjects)1. Natural sciences2. Social sciences3. Engineering4. Medic ine5. Business.(in monetary industry)Tools of numerical analysisMost powerful tools of numerical analysisComputer graphicsSymbolic numeral computationsGraphical user interfacesNumerical analysis is needed to solve engineering problems that lead to equations that cannot be solved analytically with simple formulas.Examples are solutions of largesystemsof algebraic equations, evaluation of integrals, and solution of differential equations. The finite element method is a numerical method that is in widespread use to solve partial differential equations in a variety of engineering fields including stress analysis, fluid dynamics, heat transfer, and electro-magnetic fields.In hydro dormant pressure passageingIn high hydrostatic pressure (HHP) processing, food and biotechnological substances are compressed up to 1000 M Pa to achieve various pressure-induced conversions such as microbial and enzyme inactivations, phase transitions of proteins, and solid-liquid body politic transitions. From the point of view of thermodynamics, Heat transfer leads to space-time-dependent temperature fields that affect many pressure-induced conversions and produce undesired process non uniformitiesEffects related to HHP processing can be studied appropriately by use of numerical analysis because in situ measurement techniques are barely available, optical accessibility is hardly possible, and technical equipment is expensive.This reports on two examples, where numerical analysis is applied successfully and delivers substantial insights into the phenomenon of high-pressure processing.CalculationE.g TSP problem ( voyageing salesman problem)to travel no. of cities in such a way that the expenses on traveling are minimized. NP-complete problem. optimal solution we have to go through all possible routes numbers of routes increases exponential with the numbers of cities.Modern Applications and Computer SoftwareSophisticated numerical analysis software package is being embedded in popular software packagese.g. spreadsheet programs.Buisness Applications-Modern business makes much use of optimization methods in deciding how to allocate resources most efficiently. These include problems such as inventory control,scheduling, how best to locate manufacturing storage facilities, investment strategies,and others.In Financial persistenceQuantitative analysts developing financial applications have specialized expertise in their area of analysis.Algorithms used for numerical analysis range from basic numerical functions to calculate interest income to advanced functions that offer specialized optimization and forecasting techniques.Sample Finance ApplicationsThree common examples from the financial services industry that require numerical algorithms are Portfolio selection Option pricing Risk managementIn marketGiven the wide-eyed range of numerical tools available a financial services provider can develop targeted applications that brood specific market needs. For example , quantitative analysts developing financial applications have specialized expertise in their area of analysis.

No comments:

Post a Comment