• Complain

Lopez C.P. - Differential Calculus with Matlab

Here you can read online Lopez C.P. - Differential Calculus with Matlab full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. genre: Science. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

No cover
  • Book:
    Differential Calculus with Matlab
  • Author:
  • Genre:
  • Rating:
    3 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 60
    • 1
    • 2
    • 3
    • 4
    • 5

Differential Calculus with Matlab: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Differential Calculus with Matlab" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Cesar Lopez Perez, 2016. 243 p. ASIN: B01AQM67GCMATLAB is a platform for scientific computing that helps you to work in virtually all areas of the experimental sciences and engineering. In particular, this software presents quite extensive capabilities and implements a large number of commands enabling you to efficiently handle problems involving Differential Calculus. Using MATLAB you will be able to work with Limits, Numerical and power series, Taylor and MacLaurin series, continuity, derivability, differentiability in several variables, optimization and differential equations. MATLAB also implements numerical methods for the approximate solution of differential equations.

Lopez C.P.: author's other books


Who wrote Differential Calculus with Matlab? Find out the surname, the name of the author of the book and a list of all author's works by series.

Differential Calculus with Matlab — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Differential Calculus with Matlab" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make

Differential Calculus withMATLABSCIENTIFIC BOOKS
INDEX
Chapter 1. Introduction and the MATLAB environment

1.1 Numerical computation with MATLAB
You can use MATLAB as apowerful numerical computer. While most calculators handle numbers only to apreset degree of precision, MATLAB performs exact calculations to any desireddegree of precision. In addition, unlike calculators, we can perform operationsnot only with individual numbers, but also with objects such as arrays. Most of the topics ofclassical numerical analysis are treated by this software. It supports matrixcalculus, statistics, interpolation, least squares fitting, numericalintegration, minimization of functions, linear programming, numerical andalgebraic solutions of differential equations and a long list of furthermethods that we'll meet as this book progresses.

Here are some examples ofnumerical calculations with MATLAB. (To obtain the results simply press Enteronce the desired command has been entered after the prompt "".) 1) We calculate 4 + 3 toobtain the result 7. To do this, just type 4 + 3, and then Enter. 4 + 3ans = (2) We find the value of 3to the power of 100, without having previously set the precision. To do this wesimply enter 3 ^ 100. 1538e + 047 (3) We can use the command"format long e" to obtain results to 15 digits (floating-point). format long e3^100ans =5.153775207320115e+047 (4) We can also work withcomplex numbers. format long e3^100ans =5.153775207320115e+047 (4) We can also work withcomplex numbers.

We find the result of the operation raising (2 + 3i) to thepower 10 by typing the expression (2 + 3i) ^ 10. (2 + 3i) ^ 10ans =-1 415249999999998e + 005 - 1.456680000000000e + 005i (5) The previous result isalso available in short format, using the "format short" command. format short(2 + 3i)^10ans =-1.4152e+005- 1.4567e+005i (6) We can calculate thevalue of the Bessel function J0 at 11.5. To do this we typebesselj(0,11.5). besselj(0,11.5)ans =-0.0677 (7) We can also performnumerical integration. int ('sin(sin(x))', 0, pi)ans =1235191162052677/2251799813685248 * pi These ideas will be treatedmore thoroughly later in the book.

1.2 Symbolic computation with MATLAB
MATLAB perfectly handlessymbolic mathematical computations, manipulating and performing operations onformulae and algebraic expressions with ease.
1.2 Symbolic computation with MATLAB
MATLAB perfectly handlessymbolic mathematical computations, manipulating and performing operations onformulae and algebraic expressions with ease.

You can expand, factor andsimplify polynomials and rational and trigonometric expressions, find algebraicsolutions of polynomial equations and systems of equations, evaluatederivatives and integrals symbolically, find solutions of differentialequations, manipulate powers, and investigate limits and many other features ofalgebraic series. To perform these tasks,MATLAB first requires all the variables (or algebraic expressions) to bewritten between single quotes. When MATLAB receives a variable or expression inquotes, it is interpreted as symbolic. Here are some examples ofsymbolic computations with MATLAB. 1) We can expand thefollowing algebraic expression: ((x + 1)(x+2)-(x+2) ^2)^3. This is done by typing: expand('((x + 1)(x+2)-(x+2) ^ 2) ^ 3').

Theresult will be another algebraic expression: syms x; expand(((x + 1) *(x + 2)-(x +2) ^ 2) ^ 3)ans =-x ^ 3-6 * x ^ 2-12 * x-8 2) We can factor the resultof the calculation in the above example by typing: factor('((x + 1) *(x + 2)-(x+ 2) ^ 2) ^ 3') syms x; factor(((x + 1)*(x + 2)-(x +2)^2)^3)ans =-(x+2)^3 3) We can find theindefinite integral of the function (x ^ 2) sin(x) ^ 2 by typing:int('x ^ 2 * sin(x) ^ 2', 'x') int('x^2*sin(x)^2', 'x')ans =x ^ 2 *(-1/2 * cos(x) * sin(x) + 1/2 * x)-1/2 * x* cos(x) ^ 2 + 1/4 * cos(x) * sin(x) + 1/4 * 1/x-3 * x ^ 3 4) We can simplify the previous result: >> syms x;simplify(int(x^2*sin(x)^2, x))ans =sin(2*x)/8 -(x*cos(2*x))/4 -(x^2*sin(2*x))/4 +x^3/6 5) We can present the previous result using a moreelegant mathematical notation: >> syms x;pretty(simplify(int(x^2*sin(x)^2, x)))ans =2 3sin(2 x) x cos(2 x) x sin(2 x) x-------- ----------- - ----------- + --8 4 4 6 6) We can find the seriesexpansion up to order 12 of the function x ^ 2 * sin (x) ^ 2, presenting theresult in elegant form: pretty(taylor('x^2*sin(x)^2',12)) 4 6 8 10 12 x - 1/3 x + 2/45 x - 1/315 x + o (x) 7) We can solve theequation 3ax-7 x ^ 2 + x ^ 3 = 0 (where a is aparameter): solve('3*a*x-7*x^2 + x^3 = 0', 'x')ans =[ 0][7/2 + 1/2 *(49-12*a) ^(1/2)][7/2-1/2 *(49-12*a) ^(1/2)] 8) We can find the fivesolutions of the equation x ^ 5 + 2 x + 1 = 0: solve('x^5+2*x+1','x')ans =RootOf(_Z^5+2*_Z+1) As the result does not explicitlygive five solutions, we apply the "allvalues" command: allvalues(solve('x^5+2*x+1','x'))ans =[-.7018735688558619-. 8796971979298240* i][-. 7018735688558619 +.8796971979298240 * i][-. 4863890359345430][.9450680868231334-. 8545175144390459 *i][. 8545175144390459* i] On the other hand, MATLABcan use the Maple program libraries to work with symbolic math, and can thusextend its field of action. 8545175144390459* i] On the other hand, MATLABcan use the Maple program libraries to work with symbolic math, and can thusextend its field of action.

In this way, MATLAB can be used to work on suchtopics as differential forms, Euclidean geometry, projective geometry,statistics, etc. At the same time, Maple canalso benefit from MATLABs powers of numerical calculation, which might beused, for example, in combination with the Maple libraries (combinatorics,optimization, number theory, etc.)

1.3 MATLAB and Maple
Provided the "Extended SymbolicMath Toolbox" is installed then MATLAB can extend its symbolic calculationabilities by making use of the Maple libraries. To use a Maple command fromMATLAB, use the command 'maple' followed by the corresponding Maple syntax. To use a Maple command fromMatlab, the syntax is as follows: maple('Maple_command_syntax') or alternatively: maple'Maple_command_syntax' To use a Maple command withN arguments from Matlab, the syntax is as follows: maple('Maple_command_syntax',argument1,argument2,...,argumentN) Here are some examples. 1) We can calculate thelimit of the function (x ^ 3-1) / (xs) as x tends to 1: maple('limit((x^3-1)/(x-1),x=1)') ans= We could also have used thefollowing syntax: maple limit('(x^3-1)/(x-1),x=1)'; ans= 2) We can calculate thegreatest common divisor of 10,000 and 5,000: maple('gcd', 10000, 5000) ans = 5000
1.4 Graphics with MATLAB
MATLAB can generate two-and three-dimensional graphs, as well as contour and density plots. You cangraphically represent data lists, controlling colors, shading and othergraphics features.

Animated graphics are also supported. Graphics produced byMATLAB are portable to other programs. Some examples of MATLABgraphics are given below. 1) We can represent thefunction xsin(1/x) for x ranging between - p /4 and p /4,taking 300 equidistant points in the interval. See Figure 1-1. x = linspace(-pi/4,pi/4,300);y=x.*sin(1./x);plot(x,y)Figure 1-1 2 We can give the abovegraph a title and label the axes and we - photo 1

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Differential Calculus with Matlab»

Look at similar books to Differential Calculus with Matlab. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Differential Calculus with Matlab»

Discussion, reviews of the book Differential Calculus with Matlab and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.