Lecture slides for MA2730 Analysis I

Size: px
Start display at page:

Download "Lecture slides for MA2730 Analysis I"

Transcription

1 Lecture slides for MA2730 Analysis I Simon people.brunel.ac.uk/~icsrsss simon.shaw@brunel.ac.uk College of Engineering, Design and Physical Sciences bicom & Materials and Manufacturing Research Institute Brunel University November 20, 2015

2 Contents of the teaching and assessment blocks MA2730: Analysis I Analysis taming infinity Maclaurin and Taylor series. Sequences. Improper Integrals. Series. Convergence. L A TEX2ε assignment in December. Question(s) in January class test. Question(s) in end of year exam. Web Page:

3 MA L A TEX: topics for Advanced concepts: packages; macros; environments. Tables. Floats. Cross referencing. tikz graphics, The picture environnment.

4 The topics for this lecture are both wide and deep. This means that our treatment will be particularly superficial. All of the topics touched on today can be probed much further and the examples that we use made much more complicated. As ever, there are plenty of learning resources out there on the net so feel free to play around and build on what we do. We start with making our own macros... Before we start, make sure your preamble contains at least the same material as for lab 2.

5 Suppose that you wanted to write many instances of dy dx. In code this is \frac{dy}{dx} But you might still think it is a lot to type many, many times. You can get around this by defining a macro: \newcommand{\dydx}{\frac{dy}{dx}} And then: typing $\dydx$ will produce dy dx.

6 Suppose that you wanted to write many instances of dy dx. In code this is \frac{dy}{dx} But you might still think it is a lot to type many, many times. You can get around this by defining a macro: \newcommand{\dydx}{\frac{dy}{dx}} And then: typing $\dydx$ will produce dy dx.

7 Suppose that you wanted to write many instances of dy dx. In code this is \frac{dy}{dx} But you might still think it is a lot to type many, many times. You can get around this by defining a macro: \newcommand{\dydx}{\frac{dy}{dx}} And then: typing $\dydx$ will produce dy dx.

8 Suppose that you wanted to write many instances of dy dx. In code this is \frac{dy}{dx} But you might still think it is a lot to type many, many times. You can get around this by defining a macro: \newcommand{\dydx}{\frac{dy}{dx}} And then: typing $\dydx$ will produce dy dx.

9 Suppose that you wanted to write many instances of dy dx. In code this is \frac{dy}{dx} But you might still think it is a lot to type many, many times. You can get around this by defining a macro: \newcommand{\dydx}{\frac{dy}{dx}} And then: typing $\dydx$ will produce dy dx.

10 dy But what if you wanted to write several variants: dx, df dz, ds dt etc? You can abbreviate this by defining a macro with arguments: \newcommand{\deriv}[2]{\frac{d#1}{d#2}} And then: typing \[\deriv{s}{t}\deriv{t}{s}=1.\] will produce ds dt dt ds = 1. While \[\deriv{y}{x}\deriv{x}{y}=1.\] will produce dy dx dxdy = 1.

11 dy But what if you wanted to write several variants: dx, df dz, ds dt etc? You can abbreviate this by defining a macro with arguments: \newcommand{\deriv}[2]{\frac{d#1}{d#2}} And then: typing \[\deriv{s}{t}\deriv{t}{s}=1.\] will produce ds dt dt ds = 1. While \[\deriv{y}{x}\deriv{x}{y}=1.\] will produce dy dx dxdy = 1.

12 dy But what if you wanted to write several variants: dx, df dz, ds dt etc? You can abbreviate this by defining a macro with arguments: \newcommand{\deriv}[2]{\frac{d#1}{d#2}} And then: typing \[\deriv{s}{t}\deriv{t}{s}=1.\] will produce ds dt dt ds = 1. While \[\deriv{y}{x}\deriv{x}{y}=1.\] will produce dy dx dxdy = 1.

13 dy But what if you wanted to write several variants: dx, df dz, ds dt etc? You can abbreviate this by defining a macro with arguments: \newcommand{\deriv}[2]{\frac{d#1}{d#2}} And then: typing \[\deriv{s}{t}\deriv{t}{s}=1.\] will produce ds dt dt ds = 1. While \[\deriv{y}{x}\deriv{x}{y}=1.\] will produce dy dx dxdy = 1.

14 How about these? dy dx, d2 f dm+1 s dz 2, etc? dtm+1 You can deal with these by defining a macro with an optional argument: \newcommand{\derivn}[3][]{\frac{d^{#1}#2}{d#3^{#1}}} And then: typing \[\derivn{y}{x}+\derivn[2]{f}{z}+\derivn[m+1]{s}{t}=?\] will produce dy dx + d2 f dz 2 + dm+1 s =? dtm+1 You can have only one optional argument, and up to nine arguments in total. The \newcommand{...} definitions should go in the document preamble.

15 How about these? dy dx, d2 f dm+1 s dz 2, etc? dtm+1 You can deal with these by defining a macro with an optional argument: \newcommand{\derivn}[3][]{\frac{d^{#1}#2}{d#3^{#1}}} And then: typing \[\derivn{y}{x}+\derivn[2]{f}{z}+\derivn[m+1]{s}{t}=?\] will produce dy dx + d2 f dz 2 + dm+1 s =? dtm+1 You can have only one optional argument, and up to nine arguments in total. The \newcommand{...} definitions should go in the document preamble.

16 How about these? dy dx, d2 f dm+1 s dz 2, etc? dtm+1 You can deal with these by defining a macro with an optional argument: \newcommand{\derivn}[3][]{\frac{d^{#1}#2}{d#3^{#1}}} And then: typing \[\derivn{y}{x}+\derivn[2]{f}{z}+\derivn[m+1]{s}{t}=?\] will produce dy dx + d2 f dz 2 + dm+1 s =? dtm+1 You can have only one optional argument, and up to nine arguments in total. The \newcommand{...} definitions should go in the document preamble.

17 How about these? dy dx, d2 f dm+1 s dz 2, etc? dtm+1 You can deal with these by defining a macro with an optional argument: \newcommand{\derivn}[3][]{\frac{d^{#1}#2}{d#3^{#1}}} And then: typing \[\derivn{y}{x}+\derivn[2]{f}{z}+\derivn[m+1]{s}{t}=?\] will produce dy dx + d2 f dz 2 + dm+1 s =? dtm+1 You can have only one optional argument, and up to nine arguments in total. The \newcommand{...} definitions should go in the document preamble.

18 How about these? dy dx, d2 f dm+1 s dz 2, etc? dtm+1 You can deal with these by defining a macro with an optional argument: \newcommand{\derivn}[3][]{\frac{d^{#1}#2}{d#3^{#1}}} And then: typing \[\derivn{y}{x}+\derivn[2]{f}{z}+\derivn[m+1]{s}{t}=?\] will produce dy dx + d2 f dz 2 + dm+1 s =? dtm+1 You can have only one optional argument, and up to nine arguments in total. The \newcommand{...} definitions should go in the document preamble.

19 One last thing for this part... Which do you prefer: x y z or x y z? If the latter then you can re-new the \le and \ge commands with \renewcommand{\le}{\leqslant} \renewcommand{\ge}{\geqslant}

20 L A TEX environments Environments are a big part of L A TEX. They allow us to switch into a tailored environment, do our thing, and then switch out again. The environment can be designed to suit its purpose. We are going to study theorem-like environments and for this include the following material in your preamble: \usepackage{amsthm} \newtheorem{theorem}{theorem}[section] \newtheorem{lemma}[theorem]{lemma} \newtheorem{proposition}[theorem]{proposition} \newtheorem{corollary}[theorem]{corollary} These will make Theorems, Lemmas, Propositions, Corollaries and proofs available to you.

21 L A TEX environments Environments are a big part of L A TEX. They allow us to switch into a tailored environment, do our thing, and then switch out again. The environment can be designed to suit its purpose. We are going to study theorem-like environments and for this include the following material in your preamble: \usepackage{amsthm} \newtheorem{theorem}{theorem}[section] \newtheorem{lemma}[theorem]{lemma} \newtheorem{proposition}[theorem]{proposition} \newtheorem{corollary}[theorem]{corollary} These will make Theorems, Lemmas, Propositions, Corollaries and proofs available to you.

22 L A TEX environments Environments are a big part of L A TEX. They allow us to switch into a tailored environment, do our thing, and then switch out again. The environment can be designed to suit its purpose. We are going to study theorem-like environments and for this include the following material in your preamble: \usepackage{amsthm} \newtheorem{theorem}{theorem}[section] \newtheorem{lemma}[theorem]{lemma} \newtheorem{proposition}[theorem]{proposition} \newtheorem{corollary}[theorem]{corollary} These will make Theorems, Lemmas, Propositions, Corollaries and proofs available to you.

23 L A TEX environments Environments are a big part of L A TEX. They allow us to switch into a tailored environment, do our thing, and then switch out again. The environment can be designed to suit its purpose. We are going to study theorem-like environments and for this include the following material in your preamble: \usepackage{amsthm} \newtheorem{theorem}{theorem}[section] \newtheorem{lemma}[theorem]{lemma} \newtheorem{proposition}[theorem]{proposition} \newtheorem{corollary}[theorem]{corollary} These will make Theorems, Lemmas, Propositions, Corollaries and proofs available to you.

24 L A TEX environments Note once again the use of \usepackage to load in an additional package: \usepackage{amsthm} This one makes the proof environment available (the others can be used without this package). But what use is a theorem without a proof!

25 L A TEX environments Here s an example using \label and \ref: Theorem 1 (Cauchy-Goursat Theorem) If a function f: C C is single-valued and analytic within and on a closed curve C C then f(z)dz = 0. C Proof of Theorem 1. See, for example, Introduction to Complex Variables and Applications by R.V. Churchill, McGraw-Hill, 1948.

26 Here s the code... \begin{theorem}[cauchy-goursat Theorem]\label{thm:CG-thm} If a function $f\colon\mathbb{c}\to\mathbb{c}$ is single-valued and analytic within and on a closed curve $C\subset\mathbb{C}$ then \[ \int_c f(z)\, dz = 0. \] \end{theorem} \begin{proof}[proof of Theorem~\ref{thm:CG-thm}] See, for example, \textit{introduction to Complex Variables and Applications} by R.V.~Churchill, McGraw-Hill, \end{proof} Let s move to the lab3.tex document for the next part.

27 Here s the code... \begin{theorem}[cauchy-goursat Theorem]\label{thm:CG-thm} If a function $f\colon\mathbb{c}\to\mathbb{c}$ is single-valued and analytic within and on a closed curve $C\subset\mathbb{C}$ then \[ \int_c f(z)\, dz = 0. \] \end{theorem} \begin{proof}[proof of Theorem~\ref{thm:CG-thm}] See, for example, \textit{introduction to Complex Variables and Applications} by R.V.~Churchill, McGraw-Hill, \end{proof} Let s move to the lab3.tex document for the next part.

28 Here s the code... \begin{theorem}[cauchy-goursat Theorem]\label{thm:CG-thm} If a function $f\colon\mathbb{c}\to\mathbb{c}$ is single-valued and analytic within and on a closed curve $C\subset\mathbb{C}$ then \[ \int_c f(z)\, dz = 0. \] \end{theorem} \begin{proof}[proof of Theorem~\ref{thm:CG-thm}] See, for example, \textit{introduction to Complex Variables and Applications} by R.V.~Churchill, McGraw-Hill, \end{proof} Let s move to the lab3.tex document for the next part.

29 Our next task is to learn how to create tables. For example, Left centre centre right L1 C1 C1 R1 L2 C2 C2 R2 Table : A simple table showing left, centre and right alignment, and horizontal and vertical lines. \begin{table}\centering\begin{tabular}{ l c c r }\hline Left & centre & centre & right \\\hline L1 & C1 & C1 & R1 \\ L2 & C2 & C2 & R2 \\\hline \end{tabular}\caption{a simple table showing left, centre and right alignment, and horizontal and vertical lines.\label{tab:simple}}\end{table}

30 Our next task is to learn how to create tables. For example, Left centre centre right L1 C1 C1 R1 L2 C2 C2 R2 Table : A simple table showing left, centre and right alignment, and horizontal and vertical lines. \begin{table}\centering\begin{tabular}{ l c c r }\hline Left & centre & centre & right \\\hline L1 & C1 & C1 & R1 \\ L2 & C2 & C2 & R2 \\\hline \end{tabular}\caption{a simple table showing left, centre and right alignment, and horizontal and vertical lines.\label{tab:simple}}\end{table}

31 Our last topic will give an introduction to tikz. This is a very powerful graphics package for creating plots in L A TEX. It is also BIG and complicated. We will merely scratch the surface... For the sake of demonstration suppose that we want to plot y = 3sin(2x 1) and z = 2 x 2 /2 on the same set of axes with x [ 3,5]. First make sure to load tikz and pgfplots in the preamble: \usepackage{tikz,pgfplots}

32 Here it is... 0 y = 3sin(2x 1) z = 2 x 2 / Figure : Plot of y = 3sin(2x 1) and z = 2 x 2 /2 for x [ 3,5]

33 And here s the code... \begin{figure}[b]\centering\begin{tikzpicture}[scale=0.9] \begin{axis}[grid=major,inner axis line style={=>}, xtick={-3, -2,...,5},legend pos=outer north east] \addplot[blue,mark=dot] expression[domain=-3:5,samples=40]{3*sin(deg(2*x-1))}; \addlegendentry{$y=3\sin(2x-1)$}; \addplot[red,mark=o] expression[domain=-3:5,samples=20]{2-x^2/2}; \addlegendentry{$z=2-x^2/2$}; \end{axis}\end{tikzpicture} \caption{plot of $y=3\sin(2x-1)$ and $z=2-x^2/2$ for $x\in[-3,5]$\label{fig:my-tikz-plot}}\end{figure}

34 And here s the code... \begin{figure}[b]\centering\begin{tikzpicture}[scale=0.9] \begin{axis}[grid=major,inner axis line style={=>}, xtick={-3, -2,...,5},legend pos=outer north east] \addplot[blue,mark=dot] expression[domain=-3:5,samples=40]{3*sin(deg(2*x-1))}; \addlegendentry{$y=3\sin(2x-1)$}; \addplot[red,mark=o] expression[domain=-3:5,samples=20]{2-x^2/2}; \addlegendentry{$z=2-x^2/2$}; \end{axis}\end{tikzpicture} \caption{plot of $y=3\sin(2x-1)$ and $z=2-x^2/2$ for $x\in[-3,5]$\label{fig:my-tikz-plot}}\end{figure}

35 The integral test from lectures The early terms are not significant for a convergence test. So... N+1 m 4 N x+3 dx k=m 4 N k +3 m 1 4 x+3 dx Hence: the series and integral behave the same as N

36 It is clear that this is sophisticated material. There is a lot to take in. These examples will reward study and you can ask in the labs if you get stuck. Or you can look online there is a huge amount of information. Let s just note that the tikz plot is contained in a tikzpicture environment. This itself is within a figure environment which, like the table environment also floats and allows for a labelled and numbered caption. You need to process this with DVI->PS and then PS->PDF to get the tikz graphics.

37 Lab 3 Lab 3 For the next lab session you should download the handwritten material in lab3-proofs-to-create.pdf Spend some time understanding these results they are important and then create your own versions in L A TEX.

38 Overview (MA2730,2812,2815) lecture 3 End of Lecture Computational and αpplie Mathematics Lab session 3 For the next lab session you should download the handwritten material in lab3-proofs-to-create.pdf Spend some time understanding these results they are important and then create your own versions in LATEX.

L A TEX Lab 3: advanced concepts

L A TEX Lab 3: advanced concepts L A TEX Lab 3: advanced concepts Simon Shaw November 20, 205 Lab 3: macros Suppose that you wanted to write many instances of dy dx. In code this is \frac{dy}{dx} But you might still think it is a lot

More information

Lecture 1. MA2730: Analysis I. Lecture slides for MA2730 Analysis I. Study and Assessment Components. MA L A TEX: topics for Lecture 1

Lecture 1. MA2730: Analysis I. Lecture slides for MA2730 Analysis I. Study and Assessment Components. MA L A TEX: topics for Lecture 1 Contents of the teaching and assessment blocks MA2730: Analysis I Lecture slides for MA2730 Analysis I Simon people.brunel.ac.uk/~icsrsss simon.shaw@brunel.ac.uk College of Engineering, Design and Physical

More information

Paul Gartside. March 2, 2013

Paul Gartside. March 2, 2013 SIAM L A TEX Workshop: First Steps Paul Gartside March 2, 2013 1 Introduction Today you are going to take the first steps in learning how to create beautiful mathematical documents using L A TEX (or review

More information

Introduction to MCS 220 and L A TEX

Introduction to MCS 220 and L A TEX Introduction to MCS 220 and L A TEX Tom LoFaro August 28, 2009 1 Introduction to MCS 220 MCS 220, Introduction to Analysis, carries a WRITD (writing in the discipline) designation. What this means to you

More information

LaTeX Seminar III: Environments and More Advanced Mathematical Typesetting

LaTeX Seminar III: Environments and More Advanced Mathematical Typesetting LaTeX Seminar III: Environments and More Advanced Mathematical Typesetting Clifford E. Weil March 24, 2004 1 General Environments We have already encountered two environments. They are the document environment

More information

Just Enough L A TEX, Week 4

Just Enough L A TEX, Week 4 Just Enough L A TEX, Week 4 1 1 Department of Mathematics Michigan State University East Lansing, MI USA weil@math.msu.edu October 24, 2008 Typesetting Fractions The basic command to produce a fraction

More information

L A TEX in the Classroom

L A TEX in the Classroom Introduction Welcome L A TEX in the Classroom Dan Raies The University of Oregon Wednesday, July 20, 2014 Dan Raies (The University of Oregon) LATEX in the Classroom Wednesday, July 20, 2014 1 / 33 Introduction

More information

R f da (where da denotes the differential of area dxdy (or dydx)

R f da (where da denotes the differential of area dxdy (or dydx) Math 28H Topics for the second exam (Technically, everything covered on the first exam, plus) Constrained Optimization: Lagrange Multipliers Most optimization problems that arise naturally are not unconstrained;

More information

Math 407 Solutions to Exam 3 April 24, Let f = u + iv, and let Γ be parmetrized by Γ = (x (t),y(t)) = x (t) +iy (t) for a t b.

Math 407 Solutions to Exam 3 April 24, Let f = u + iv, and let Γ be parmetrized by Γ = (x (t),y(t)) = x (t) +iy (t) for a t b. Math 7 Solutions to Exam 3 April, 3 1. (1 Define the following: (a f (z dz, where Γ is a smooth curve with finite length. Γ Let f u + iv, and let Γ be parmetrized by Γ (x (t,y(t x (t +iy (t for a t b.

More information

1 MATH 253 LECTURE NOTES for FRIDAY SEPT. 23,1988: edited March 26, 2013.

1 MATH 253 LECTURE NOTES for FRIDAY SEPT. 23,1988: edited March 26, 2013. 1 MATH 253 LECTURE NOTES for FRIDAY SEPT. 23,1988: edited March 26, 2013. TANGENTS Suppose that Apple Computers notices that every time they raise (or lower) the price of a $5,000 Mac II by $100, the number

More information

= f (a, b) + (hf x + kf y ) (a,b) +

= f (a, b) + (hf x + kf y ) (a,b) + Chapter 14 Multiple Integrals 1 Double Integrals, Iterated Integrals, Cross-sections 2 Double Integrals over more general regions, Definition, Evaluation of Double Integrals, Properties of Double Integrals

More information

My LaTeX Document. July 7, Introduction 2

My LaTeX Document. July 7, Introduction 2 My LaTeX Document Me July 7, 2017 Contents 1 Introduction 2 2 Exercises 2 2.1 Piecewise defined function...................... 2 2.2 Greek letters............................. 2 2.3 Limits.................................

More information

A TALE OF GNUS, GNATS AND ARMADILLOS. THESIS A. U. Thor First Lieutenant, USAF AFIT/123/456/78-9. Approved for public release; distribution unlimited

A TALE OF GNUS, GNATS AND ARMADILLOS. THESIS A. U. Thor First Lieutenant, USAF AFIT/123/456/78-9. Approved for public release; distribution unlimited AFIT/123/456/78-9 A TALE OF GNUS, GNATS AND ARMADILLOS THESIS A. U. Thor First Lieutenant, USAF AFIT/123/456/78-9 Approved for public release; distribution unlimited The views expressed in this thesis

More information

An Introduction to LATEX

An Introduction to LATEX An Introduction to LATEX Mathematics 23a, Fall 2012 By: Isabel Vogt, Will Rafey, and Neil Gat Last Updated: 13 September, 2012 1 Introduction The simplest way to learn TeX is by example. Copy the heading

More information

Introduction to L A TEX for MCS-236

Introduction to L A TEX for MCS-236 Introduction to L A TEX for MCS-236 Max Hailperin, based on a version by Tom LoFaro September 14, 2011 1 Why L A TEX? L A TEX is a very strange document formatting system. Actually, it is a combination

More information

Guidelines for ETNA manuscripts 1

Guidelines for ETNA manuscripts 1 Guidelines for ETNA manuscripts 1 1 General formatting guidelines A manuscript for ETNA must be written in English. It may be in color provided it is equally readable when displayed in black and white.

More information

Cauchy's Integral Formula

Cauchy's Integral Formula Cauchy's Integral Formula Thursday, October 24, 2013 1:57 PM Last time we discussed functions defined by integration over complex contours, and let's look at a particularly important example: Where C is

More information

Graphics in MathBook XML

Graphics in MathBook XML Thomas W. Judson Stephen F. Austin State University April 27, 2016 The L A TEX picture environment In the beginning graphics was created with the L A TEX picture environment or imported from a third party

More information

Preparation of ADSA and IJDE Manuscripts

Preparation of ADSA and IJDE Manuscripts Preparation of ADSA and IJDE Manuscripts http://campus.mst.edu/adsa http://campus.mst.edu/ijde Before submitting your paper to ADSA or IJDE, please follow all instructions as given in this document. If

More information

MTH 122 Calculus II Essex County College Division of Mathematics and Physics 1 Lecture Notes #11 Sakai Web Project Material

MTH 122 Calculus II Essex County College Division of Mathematics and Physics 1 Lecture Notes #11 Sakai Web Project Material MTH Calculus II Essex County College Division of Mathematics and Physics Lecture Notes # Sakai Web Project Material Introduction - - 0 - Figure : Graph of y sin ( x y ) = x cos (x + y) with red tangent

More information

Topic 5.1: Line Elements and Scalar Line Integrals. Textbook: Section 16.2

Topic 5.1: Line Elements and Scalar Line Integrals. Textbook: Section 16.2 Topic 5.1: Line Elements and Scalar Line Integrals Textbook: Section 16.2 Warm-Up: Derivatives of Vector Functions Suppose r(t) = x(t) î + y(t) ĵ + z(t) ˆk parameterizes a curve C. The vector: is: r (t)

More information

Computer Graphics: Viewing in 3-D. Course Website:

Computer Graphics: Viewing in 3-D. Course Website: Computer Graphics: Viewing in 3-D Course Website: http://www.comp.dit.ie/bmacnamee 2 Contents Transformations in 3-D How do transformations in 3-D work? 3-D homogeneous coordinates and matrix based transformations

More information

Writing Guidelines for

Writing Guidelines for Writing Guidelines for Homework with Proofs Ethan Bloch August 7, 2015 1 Contents 1 Introduction 3 2 Use Proper LATEX 4 2.1 Read the Manual for the Bard Macros Style.................... 4 2.2 Make and

More information

CSE 150: Notation Examples

CSE 150: Notation Examples CSE 150: Notation s Leif Walsh December 12, 2007 For most of the following, you will need to include amsmath, amsfonts, amsthm, and sometimes amssymb in your source, by putting the \usepackage{amsmath}

More information

L A TEX: Online module 9

L A TEX: Online module 9 L A TEX: Online module 9 Venkata Manem Univ. of Waterloo August 19, 2011 Venkata Manem (Univ. of Waterloo) LATEX: Online module 9 August 19, 2011 1 / 32 Topics to be covered Typeset lengthy equations Matrices

More information

2 Unit Bridging Course Day 10

2 Unit Bridging Course Day 10 1 / 31 Unit Bridging Course Day 10 Circular Functions III The cosine function, identities and derivatives Clinton Boys / 31 The cosine function The cosine function, abbreviated to cos, is very similar

More information

Plane Curve [Parametric Equation]

Plane Curve [Parametric Equation] Plane Curve [Parametric Equation] Bander Almutairi King Saud University December 1, 2015 Bander Almutairi (King Saud University) Plane Curve [Parametric Equation] December 1, 2015 1 / 8 1 Parametric Equation

More information

PURE MATHEMATICS 212 Multivariable Calculus CONTENTS. Page. 1. Assignment Summary... i 2. Introduction Timetable Assignments...

PURE MATHEMATICS 212 Multivariable Calculus CONTENTS. Page. 1. Assignment Summary... i 2. Introduction Timetable Assignments... PURE MATHEMATICS 212 Multivariable Calculus CONTENTS Page 1. Assignment Summary... i 2. Introduction...1 3. Timetable... 3 4. Assignments...5 i PMTH212, Multivariable Calculus Assignment Summary 2009

More information

This is page i Printer: Opaque this. The Title of a Book. Dr. Author Jones. The Date

This is page i Printer: Opaque this. The Title of a Book. Dr. Author Jones. The Date This is page i Printer: Opaque this The Title of a Book Dr. Author Jones The Date ii ABSTRACT This document illustrates many features of a mathematics article, but we do not explain the spurious appearance

More information

THIS IS AN INTRODUCTION TO. LaTeX. Introduction to Latex. University of Minnesota, November 7, 2016

THIS IS AN INTRODUCTION TO. LaTeX. Introduction to Latex. University of Minnesota, November 7, 2016 THIS IS AN INTRODUCTION TO LaTeX Introduction to Latex Jimmy Broomfield University of Minnesota, November 7, 2016 1 / Jimmy Broomfield Introduction to LaTeX 1/22 22 Outline Introduction Installation Getting

More information

L A TEX E Here s the example of a X

L A TEX E Here s the example of a X When an example needs a special package, I ve put a \usepackage statement in code for the example. The one exception is \usepackage{amsmath}. I always use this, and so should you, if only to get the align

More information

This is page i Printer: Opaque this. The Title of a Book. Dr. Author Jones. The Date

This is page i Printer: Opaque this. The Title of a Book. Dr. Author Jones. The Date This is page i Printer: Opaque this The Title of a Book Dr. Author Jones The Date ii ABSTRACT This document illustrates many features of a mathematics article, but we do not explain the spurious appearance

More information

Thesis Title. A. U. Thor. A dissertation submitted in partial fulllment of the requirements for the degree of. Doctor of Philosophy

Thesis Title. A. U. Thor. A dissertation submitted in partial fulllment of the requirements for the degree of. Doctor of Philosophy Thesis Title A. U. Thor A dissertation submitted in partial fulllment of the requirements for the degree of Doctor of Philosophy University of Washington 2000 Program Authorized to Oer Degree: Computing

More information

Remarks on common mistakes

Remarks on common mistakes Remarks on common mistakes Martin Helsø 14th January 2019 This document presents the proper treatment of mistakes that are common among L A TEX novices. It should be noted that the last tips from Section

More information

College Algebra. Cartesian Coordinates and Graphs. Dr. Nguyen August 22, Department of Mathematics UK

College Algebra. Cartesian Coordinates and Graphs. Dr. Nguyen August 22, Department of Mathematics UK College Algebra Cartesian Coordinates and Graphs Dr. Nguyen nicholas.nguyen@uky.edu Department of Mathematics UK August 22, 2018 Agenda Welcome x and y-coordinates in the Cartesian plane Graphs and solutions

More information

The Title of a Book. Dr. Author Jones. The Date

The Title of a Book. Dr. Author Jones. The Date The Title of a Book Dr. Author Jones The Date ii Contents Introduction vii 1 Purpose of this Document 1 2 Sample Mathematics and Text 3 2.1 In-line and Displayed Mathematics................. 3 2.2 Mathematics

More information

AP Calculus AB Unit 2 Assessment

AP Calculus AB Unit 2 Assessment Class: Date: 203-204 AP Calculus AB Unit 2 Assessment Multiple Choice Identify the choice that best completes the statement or answers the question. A calculator may NOT be used on this part of the exam.

More information

Tangent Planes/Critical Points

Tangent Planes/Critical Points Tangent Planes/Critical Points Christopher Croke University of Pennsylvania Math 115 UPenn, Fall 2011 Problem: Find the tangent line to the curve of intersection of the surfaces xyz = 1 and x 2 + 2y 2

More information

A THESIS WITH A LONG TITLE REQUIRING TWO LINES. A Thesis. Presented to. The Faculty of the Department of Mathematics

A THESIS WITH A LONG TITLE REQUIRING TWO LINES. A Thesis. Presented to. The Faculty of the Department of Mathematics A THESIS WITH A LONG TITLE REQUIRING TWO LINES A Thesis Presented to The Faculty of the Department of Mathematics California State University, Los Angeles In Partial Fulfillment of the Requirements for

More information

Multivariate Calculus Review Problems for Examination Two

Multivariate Calculus Review Problems for Examination Two Multivariate Calculus Review Problems for Examination Two Note: Exam Two is on Thursday, February 28, class time. The coverage is multivariate differential calculus and double integration: sections 13.3,

More information

Electronic Production Guidelines

Electronic Production Guidelines Electronic Production Guidelines Illustrations It is a good idea to check out the draw programs you have available to you before you start drawing the figures for your article. Make sure that you can create

More information

MAT01B1: Curves defined by parametric equations

MAT01B1: Curves defined by parametric equations MAT01B1: Curves defined by parametric equations Dr Craig 10 October 2018 My details: acraig@uj.ac.za Consulting hours: Monday 14h40 15h25 Thursday 11h20 12h55 Friday 11h20 12h55 Office C-Ring 508 https://andrewcraigmaths.wordpress.com/

More information

Math 3820 Project. 1 Typeset or handwritten? Guidelines

Math 3820 Project. 1 Typeset or handwritten? Guidelines Math 3820 Project Guidelines Abstract These are some recommendations concerning the projects in Math 3820. 1 Typeset or handwritten? Although handwritten reports will be accepted, I strongly recommended

More information

Engineering Mathematics (4)

Engineering Mathematics (4) Engineering Mathematics (4) Zhang, Xinyu Department of Computer Science and Engineering, Ewha Womans University, Seoul, Korea zhangxy@ewha.ac.kr Example With respect to parameter: s (arc length) r( t)

More information

Coding Tools for Research

Coding Tools for Research Coding Tools for Research Jack Baker Jack Baker Coding Tools for Research 1 / 11 Good Coding Practice in One Slide Modular: write code in small functions which do one thing. Indent!! Self documenting:

More information

Hi. I m a three. I m always a three. I never ever change. That s why I m a constant.

Hi. I m a three. I m always a three. I never ever change. That s why I m a constant. Lesson 1-1: 1 1: Evaluating Expressions Hi. I m a three. I m always a three. I never ever change. That s why I m a constant. 3 Real life changes, though. So to talk about real life, math needs things that

More information

Ma MULTIPLE INTEGRATION

Ma MULTIPLE INTEGRATION Ma 7 - MULTIPLE INTEGATION emark: The concept of a function of one variable in which y gx may be extended to two or more variables. If z is uniquely determined by values of the variables x and y, thenwesayz

More information

Directional Derivatives and the Gradient Vector Part 2

Directional Derivatives and the Gradient Vector Part 2 Directional Derivatives and the Gradient Vector Part 2 Lecture 25 February 28, 2007 Recall Fact Recall Fact If f is a dierentiable function of x and y, then f has a directional derivative in the direction

More information

Backpropagation + Deep Learning

Backpropagation + Deep Learning 10-601 Introduction to Machine Learning Machine Learning Department School of Computer Science Carnegie Mellon University Backpropagation + Deep Learning Matt Gormley Lecture 13 Mar 1, 2018 1 Reminders

More information

Chapter 15 Vector Calculus

Chapter 15 Vector Calculus Chapter 15 Vector Calculus 151 Vector Fields 152 Line Integrals 153 Fundamental Theorem and Independence of Path 153 Conservative Fields and Potential Functions 154 Green s Theorem 155 urface Integrals

More information

REVIEW I MATH 254 Calculus IV. Exam I (Friday, April 29) will cover sections

REVIEW I MATH 254 Calculus IV. Exam I (Friday, April 29) will cover sections REVIEW I MATH 254 Calculus IV Exam I (Friday, April 29 will cover sections 14.1-8. 1. Functions of multivariables The definition of multivariable functions is similar to that of functions of one variable.

More information

International Conference Las Vegas, NV, USA March 7-9, 2014

International Conference Las Vegas, NV, USA March 7-9, 2014 International Conference Las Vegas, NV, USA March 7-9, 2014 Overview About ETS (engineering school) Why Nspire CAS? Why Computer Algebra? Examples in pre-calculus Examples in single variable calculus Examples

More information

Partial Derivatives (Online)

Partial Derivatives (Online) 7in x 10in Felder c04_online.tex V3 - January 21, 2015 9:44 A.M. Page 1 CHAPTER 4 Partial Derivatives (Online) 4.7 Tangent Plane Approximations and Power Series It is often helpful to use a linear approximation

More information

AXIOMS FOR THE INTEGERS

AXIOMS FOR THE INTEGERS AXIOMS FOR THE INTEGERS BRIAN OSSERMAN We describe the set of axioms for the integers which we will use in the class. The axioms are almost the same as what is presented in Appendix A of the textbook,

More information

Calculus With Analytic Geometry Alternate 6th Edition

Calculus With Analytic Geometry Alternate 6th Edition We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with calculus with analytic

More information

My Full-Length Title

My Full-Length Title My Full-Length Title X. Author1 1 Y. Author2 2 1 Department of Mathematics University of Author1 2 Department of Engineering University of Author2 Texas A&M University pre-reu program, 2012 Author1, Author2

More information

Lecture 2: Tables, Figures and Formulæ

Lecture 2: Tables, Figures and Formulæ Federico Cantini (Lib4RI) Module 5: L A TEX Lecture 2: Tables, Figures and Formulæ Unless otherwise noted, this work is licensed under a Creative Commons Attribution 4.0 International

More information

Using the amsthm Package

Using the amsthm Package Using the amsthm Package Version 2.20, August 2004 American Mathematical Society 1 Introduction The amsthm package provides an enhanced version of L A TEX s \newtheorem command for defining theorem-like

More information

2.3 Circular Functions of Real Numbers

2.3 Circular Functions of Real Numbers www.ck12.org Chapter 2. Graphing Trigonometric Functions 2.3 Circular Functions of Real Numbers Learning Objectives Graph the six trigonometric ratios as functions on the Cartesian plane. Identify the

More information

ANIMATION AS AN INTERACTIVE TOOL

ANIMATION AS AN INTERACTIVE TOOL ANIMATION AS AN INTERACTIVE TOOL Andrew Toon 1 Open University Centre Mathematics Department, 535A Clementi Road Singapore 599490 Abstract Animation can be a powerful medium for illustrating various mathematical

More information

Title of Your Thesis: Subtitle of Your Thesis

Title of Your Thesis: Subtitle of Your Thesis Title of Your Thesis: Subtitle of Your Thesis A thesis presented by James W. Smith to The Department of Mathematics in partial fulfillment of the requirements for the degree of Doctor of Philosophy in

More information

Note di Matematica instructions for authors

Note di Matematica instructions for authors Note di Matematica, manuscript, pages 1 8. Note di Matematica instructions for authors Author One i Department of..., University of... one@xxx.xxx.xx Author Two ii Department of..., University of... two@yyy.yyy.yy

More information

Lecture 15. Lecturer: Prof. Sergei Fedotov Calculus and Vectors. Length of a Curve and Parametric Equations

Lecture 15. Lecturer: Prof. Sergei Fedotov Calculus and Vectors. Length of a Curve and Parametric Equations Lecture 15 Lecturer: Prof. Sergei Fedotov 10131 - Calculus and Vectors Length of a Curve and Parametric Equations Sergei Fedotov (University of Manchester) MATH10131 2011 1 / 5 Lecture 15 1 Length of a

More information

Analytics and Visualization of Big Data

Analytics and Visualization of Big Data 1 Analytics and Visualization of Big Data Fadel M. Megahed Lecture 15: Clustering (Discussion Class) Department of Industrial and Systems Engineering Spring 13 Refresher: Hierarchical Clustering 2 Key

More information

Math 52 - Fall Final Exam PART 1

Math 52 - Fall Final Exam PART 1 Math 52 - Fall 2013 - Final Exam PART 1 Name: Student ID: Signature: Instructions: Print your name and student ID number and write your signature to indicate that you accept the Honor Code. This exam consists

More information

EE3315 Internet Technology EE3315 Internet Technology Overview Slide 1

EE3315 Internet Technology   EE3315 Internet Technology Overview Slide 1 EE3315 Internet Technology http://www.cityu.edu.hk/ug/current/course/ee3315.htm EE3315 Internet Technology Overview Slide 1 Course Aim This course aims to provide students with the knowledge of key protocols

More information

9 About Intersection Graphs

9 About Intersection Graphs 9 About Intersection Graphs Since this lecture we focus on selected detailed topics in Graph theory that are close to your teacher s heart... The first selected topic is that of intersection graphs, i.e.

More information

Dynamics and Vibrations Mupad tutorial

Dynamics and Vibrations Mupad tutorial Dynamics and Vibrations Mupad tutorial School of Engineering Brown University ENGN40 will be using Matlab Live Scripts instead of Mupad. You can find information about Live Scripts in the ENGN40 MATLAB

More information

On vertex types of graphs

On vertex types of graphs On vertex types of graphs arxiv:1705.09540v1 [math.co] 26 May 2017 Pu Qiao, Xingzhi Zhan Department of Mathematics, East China Normal University, Shanghai 200241, China Abstract The vertices of a graph

More information

Week 5: Geometry and Applications

Week 5: Geometry and Applications Week 5: Geometry and Applications Introduction Now that we have some tools from differentiation, we can study geometry, motion, and few other issues associated with functions of several variables. Much

More information

Using L A TEX Tom Edgar

Using L A TEX Tom Edgar M499 - Senior Capstone Using L A TEX Tom Edgar Department of Mathematics Pacific Lutheran University Tacoma, WA Wednesday, September 17, 2014 Introduction Introduction What is L A TEX? Powerful (Mathematical)

More information

An Interactive Introduction to L A TEX. Part 2: Structured Documents & More. Dr John D. Lees-Miller. writel A TEX.

An Interactive Introduction to L A TEX. Part 2: Structured Documents & More. Dr John D. Lees-Miller. writel A TEX. An Interactive Introduction to L A TEX Part 2: Structured Documents & More Dr John D. Lees-Miller writel A TEX February 27, 2013 Outline Structured Documents Title and Abstract Sections Labels and Cross-References

More information

APPM 2460 PLOTTING IN MATLAB

APPM 2460 PLOTTING IN MATLAB APPM 2460 PLOTTING IN MATLAB. Introduction Matlab is great at crunching numbers, and one of the fundamental ways that we understand the output of this number-crunching is through visualization, or plots.

More information

Scientific Graphing in Excel 2013

Scientific Graphing in Excel 2013 Scientific Graphing in Excel 2013 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

Latex Tutorial 1 L A TEX. 1.1 Text

Latex Tutorial 1 L A TEX. 1.1 Text Latex Tutorial This tutorial was originally prepared by Joel Wein of MIT. You may find it helpful in preparing your notes. Anything I send you in the template file supercedes what is written here. Yishay

More information

Curves, Tangent Planes, and Differentials ( ) Feb. 26, 2012 (Sun) Lecture 9. Partial Derivatives: Signs on Level Curves, Tangent

Curves, Tangent Planes, and Differentials ( ) Feb. 26, 2012 (Sun) Lecture 9. Partial Derivatives: Signs on Level Curves, Tangent Lecture 9. Partial Derivatives: Signs on Level Curves, Tangent Planes, and Differentials ( 11.3-11.4) Feb. 26, 2012 (Sun) Signs of Partial Derivatives on Level Curves Level curves are shown for a function

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Mark Baltovic MA498 - Dissertation in Mathematics Objectives of this session What is L A TEX? The L A TEX source file Inside the body of the text Typesetting mathematics Internal

More information

Multivariate Calculus: Review Problems for Examination Two

Multivariate Calculus: Review Problems for Examination Two Multivariate Calculus: Review Problems for Examination Two Note: Exam Two is on Tuesday, August 16. The coverage is multivariate differential calculus and double integration. You should review the double

More information

Design and Analysis of Algorithms

Design and Analysis of Algorithms Design and Analysis of Algorithms CS 5311 Lecture 19 Topological Sort Junzhou Huang, Ph.D. Department of Computer Science and ngineering CS5311 Design and Analysis of Algorithms 1 Topological Sort Want

More information

LATEX TYPESETTING SYSTEM. CAAM 519, CHAPTER 3

LATEX TYPESETTING SYSTEM. CAAM 519, CHAPTER 3 LATEX TYPESETTING SYSTEM. CAAM 519, CHAPTER 3 1. Latex installation and text editors 1.1. Installation. Install Latex in your virtual machine with the following command. sudo apt get install texlive Note

More information

My Thesis. A Dissertation Submitted to the Graduate Faculty of the North Dakota State University of Agriculture and Applied Science. A. U.

My Thesis. A Dissertation Submitted to the Graduate Faculty of the North Dakota State University of Agriculture and Applied Science. A. U. My Thesis A Dissertation Submitted to the Graduate Faculty of the North Dakota State University of Agriculture and Applied Science by A. U. Thor In Partial Ful llment of the Requirements for the Degree

More information

The Divergence Theorem

The Divergence Theorem The Divergence Theorem MATH 311, Calculus III J. Robert Buchanan Department of Mathematics Summer 2011 Green s Theorem Revisited Green s Theorem: M(x, y) dx + N(x, y) dy = C R ( N x M ) da y y x Green

More information

The Title of a Book. Dr. Author Jones. Physics Monograph (Editorials C. Ascheron, H. J. Kölsch) Springer-Verlag. The Date

The Title of a Book. Dr. Author Jones. Physics Monograph (Editorials C. Ascheron, H. J. Kölsch) Springer-Verlag. The Date Dr. Author Jones The Title of a Book SPIN Springer s internal project number, if known Physics Monograph (Editorials C. Ascheron, H. J. Kölsch) The Date Springer-Verlag Berlin Heidelberg NewYork London

More information

An Introduction to L A T E X

An Introduction to L A T E X An Introduction to L A T E X 1 Outline 1 Introduction 2 How to Get L A T E X 3 Text Mode 4 Math Modes 5 Document Structure 6 Extra Stuff Introduction 3 4 Introduction Today is November 11, 2009 Introduction

More information

Assessments for CS students:

Assessments for CS students: Assessments for CS students: Two hours per week lectures, Tuesdays 2-4pm. Three in-semester assignments, with feedback de-coupled from assessment: Assignment 1 Generic paper Assignment 2 Literature review

More information

Mikkel Madsen

Mikkel Madsen Mikkel Madsen latex@mikkl.dk After completing this course, you: Have an understanding of what LaTeX is Have an idea of what things can be easily accomplished in LaTeX Know where to look for help DON T

More information

Introduction to Algorithms. Lecture 11

Introduction to Algorithms. Lecture 11 Introduction to Algorithms Lecture 11 Last Time Optimization Problems Greedy Algorithms Graph Representation & Algorithms Minimum Spanning Tree Prim s Algorithm Kruskal s Algorithm 2 Today s Topics Shortest

More information

The Full Title of an AMS Book or Monograph. Dr. Arthur Ulysses Thor Millennium Edward Two

The Full Title of an AMS Book or Monograph. Dr. Arthur Ulysses Thor Millennium Edward Two The Full Title of an AMS Book or Monograph Dr. Arthur Ulysses Thor Millennium Edward Two (A. U. Thor) Author address line 1, Author address line 2 Current address, A. U. Thor: Author current address line

More information

High-Precision Positioning Unit 2.2 Student Exercise: Calculating Topographic Change

High-Precision Positioning Unit 2.2 Student Exercise: Calculating Topographic Change High-Precision Positioning Unit 2.2 Student Exercise: Calculating Topographic Change Ian Lauer and Ben Crosby (Idaho State University) Change is an inevitable part of our natural world and varies as a

More information

Chapter 11 :: Functional Languages

Chapter 11 :: Functional Languages Chapter 11 :: Functional Languages Programming Language Pragmatics Michael L. Scott Copyright 2016 Elsevier 1 Chapter11_Functional_Languages_4e - Tue November 21, 2017 Historical Origins The imperative

More information

10.4 Linear interpolation method Newton s method

10.4 Linear interpolation method Newton s method 10.4 Linear interpolation method The next best thing one can do is the linear interpolation method, also known as the double false position method. This method works similarly to the bisection method by

More information

Aspects of Geometry. Finite models of the projective plane and coordinates

Aspects of Geometry. Finite models of the projective plane and coordinates Review Sheet There will be an exam on Thursday, February 14. The exam will cover topics up through material from projective geometry through Day 3 of the DIY Hyperbolic geometry packet. Below are some

More information

CS510 \ Lecture Ariel Stolerman

CS510 \ Lecture Ariel Stolerman CS510 \ Lecture02 2012-10-03 1 Ariel Stolerman Midterm Evan will email about that after the lecture, at least 2 lectures from now. The exam will be given in a regular PDF (not an online form). We will

More information

Pre Calculus 12 Final Exam With Answers

Pre Calculus 12 Final Exam With Answers Pre Calculus 12 Final With Answers Free PDF ebook Download: Pre Calculus 12 Final With Answers Download or Read Online ebook pre calculus 12 final exam with answers in PDF Format From The Best User Guide

More information

Creating Graphs Using SAS ODS Graphics Designer

Creating Graphs Using SAS ODS Graphics Designer Creating Graphs Using SAS ODS Graphics Designer William Knabe Former Director of Statistical Applications, UI Information Technology Services SAS Summer Training Institute 2016 Slide 1 Overview. Evolution

More information

The diagram above shows a sketch of the curve C with parametric equations

The diagram above shows a sketch of the curve C with parametric equations 1. The diagram above shows a sketch of the curve C with parametric equations x = 5t 4, y = t(9 t ) The curve C cuts the x-axis at the points A and B. (a) Find the x-coordinate at the point A and the x-coordinate

More information

CS152: Programming Languages. Lecture 11 STLC Extensions and Related Topics. Dan Grossman Spring 2011

CS152: Programming Languages. Lecture 11 STLC Extensions and Related Topics. Dan Grossman Spring 2011 CS152: Programming Languages Lecture 11 STLC Extensions and Related Topics Dan Grossman Spring 2011 Review e ::= λx. e x e e c v ::= λx. e c τ ::= int τ τ Γ ::= Γ, x : τ (λx. e) v e[v/x] e 1 e 1 e 1 e

More information

Math 230 Final Exam December 22, 2015

Math 230 Final Exam December 22, 2015 Math 230 Final Exam December 22, 2015 General Directions. This is an open- book, open- notes, open- computer test. However, you may not communicate with any person, except me, during the test. You have

More information

CSE 505 Graduate PL. Fall 2013

CSE 505 Graduate PL. Fall 2013 CSE 505 Graduate PL Fall 2013 Goals Since Day 1 Develop tools to rigorously study what programs mean. semantics equivalence, termination, determinism,... Develop tools for studying program behavior! inductive

More information

1 Metric spaces. d(x, x) = 0 for all x M, d(x, y) = d(y, x) for all x, y M,

1 Metric spaces. d(x, x) = 0 for all x M, d(x, y) = d(y, x) for all x, y M, 1 Metric spaces For completeness, we recall the definition of metric spaces and the notions relating to measures on metric spaces. A metric space is a pair (M, d) where M is a set and d is a function from

More information