Classroom Tips and Techniques: Series Expansions Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft

Size: px
Start display at page:

Download "Classroom Tips and Techniques: Series Expansions Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft"

Transcription

1 Introduction Classroom Tips and Techniques: Series Expansions Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft Maple has the ability to provide various series expansions and their truncations, as well as complete formal series for a variety of elementary and special functions. In this month's article, we examine the relevant commands and interface devices that access these functionalities. The Series Construct In Maple, the output of the taylor command appears to be a polynomial to which a "big Oh" term has been attached. The series command produces a generalized series expansion that could be a Taylor or Laurent series, or a more general series. In particular, the results of these commands can be seen in Table 1. Table 1 Application of taylor and series commands to In Table 1, the output of the taylor command is not just a polynomial to which has been added. It is a special series construct that can be converted to a polynomial with the convert command, as in The default value of the Order variable in Maple is 6. It can be changed by assigning it another integer value. However, it can also be temporarily (i.e., locally) changed inside either of the taylor or series commands by simply including an integer as a third argument. For example,

2 Order can be set temporarily to 7 as follows. This output suggests that care should be taken in interpreting the "big Oh" term produced by these commands. The outputs in Table 1 are technically correct in that they indicate the remainder term is "big Oh" of to the power of Order. In fact, the remainder terms in Table 1 are, that is, "little oh" of. Thus, the commands in Table 1 do not produce the tight bound that would apply if some form of the remainder were analytically examined for its true order. The situation is further compounded by the Maple "remember table," an internal table that stores certain calculations to reduce the time it takes to access the calculation again. We see the effect of this table in the following calculation. The second time the command is called with the default value of Order, namely, six, the remember table comes into play, and now, Maple indicates that the remainder term is. The contents of the remember table can be emptied with the forget command, as in Thus, it is useful to think in terms of "series order" as an integer that Maple uses to keep track of the truncation of a series, and it is not necessarily the precise analytic order of the remainder term. Moreover, it is clearly not the degree of the truncated polynomial obtained after converting to a polynomial. It is unfortunate that Maple uses "order" in many places where "degree" would be the more appropriate term or construct. When the output of the series command contains fractional exponents, it is not the special series construct, but rather, an expression in the form of a sum of products to which the "big Oh" term has been added. The "big Oh" term can be removed by the same convert option that works for the output of the taylor command. Interfaces to the taylor and series Commands The series command can be accessed directly, as in Table 1, or from the Context Menu. The taylor command can be accessed directly, as in Table 1, from several Task Templates, or from

3 the TaylorApproximation command in the Student Calculus 1 package. Figure 1 shows the dialog that results from selecting Series Series from the Context Menu applied to an expression such as or, the BesselJ function of index. Figure 1 Series option in the Context Menu The term "Series order" is the value that will be assigned to the Order option or variable. If the "Truncate to polynomial" checkbox is checked, a polynomial of degree at least one less than "Series order" will result. Figure 2 shows the Taylor Approximation tutor with its default settings. The default function is and the default "series order" is four. The TaylorApproximation command shown at the bottom of the tutor provides a Taylor polynomial as an approximation to the input function, but Maple declares this polynomial approximation to be of "order," that is, of "series order," rather than of "degree." The TaylorApproximation command is merely an interface to the underlying taylor command.

4 Figure 2 Taylor Approximation tutor accessing the TaylorApproximation command Table 2 provides the path to a Task Template that invokes the TaylorApproximation command and/or launches the Taylor Approximation tutor. The syntax for implementing the TaylorApproximation command is provided by this Task Template. Note that the local setting of the Order variable must be done in the form of an equation whose left-hand side is the word "order." As in Figure 2, "order" means the degree of the resulting polynomial, a usage that conflicts with that of the underlying taylor command. Tools Tasks Browse: Calculus Taylor Approximation of a Univariate Function Taylor Approximation Calculate the Taylor approximation of a specified degree for a univariate function. Enter the function as an expression. Specify the order, and then calculate the Taylor approximation.

5 Alternatively, you can use the Taylor Approximation tutor, a point-and-click interface. There are two ways to launch this tutor. From the Tools menu, select Tutors, Calculus - Single Variable, and then Taylor Approximation. Enter the function in one variable to be approximated below, then click the following Taylor Approximation button. Table 2 The Task Template "Taylor Approximation of a Univariate Function Pressing the "Taylor Approximation" button will launch the Taylor Approximation tutor pre-loaded with the function in the box to the right of the button. Alternatively, if the Student Calculus 1 package is first loaded into Maple's memory, the Context Menu for an expression will contain the option "Tutors" from which the Taylor Approximation tutor can be selected. This would be more direct than accessing the tutor from the Task Template.

6 Table 3 provides the path to a Task Template that invokes the taylor command and provides an interactive tool for obtaining Taylor expansions and polynomials. It is possible to access just this tool, which in turn provides access to the Taylor Approximation tutor. Tools Tasks Browse: Calculus Taylor Expansion and Polynomials Taylor Polynomial for a Univariate Function Calculate the Taylor expansion for a univariate function about a specified point and up to a specific order. Enter the function as an expression: Specify an expansion point and an expansion order, and then calculate the Taylor series: Alternatively, you can use the following interface to calculate the Taylor expansion and Taylor polynomial: Enter the function: Taylor Expansions and Polynomials Degree: Base-Point:

7 Table 3 The "Taylor Expansion and Polynomials" Task Template For both the series expansion and the Taylor polynomial, the degree of the polynomial is governed by the "Degree" option. If no base-point is provided, the tool assumes. Launching the tutor from this tool loads the function and the base-point, but not the desired degree. Closing the tutor places its graph into the graphing window of the tool. Laurent Series The Laurent series can be obtained with the series command, or with the laurent command from the numapprox package. Usage is illustrated in Table 4.

8 Table 4 The Laurent series via the series and laurent commands Asymptotic Series Asymptotic power series, even series with fractional powers, can be obtained in any of the four ways listed in Table 5. Table 5 Asymptotic power series

9 From Table 5 we see that the series, taylor, and asympt commands can all be used to generate asymptotic power series, even series with fractional powers. The asympt command assumes that the expansion point is the point at infinity. Both the taylor and series commands need to be told that the expansion point is at infinity. It is even possible to obtain an asymptotic expansion by changing variables so, expanding about, and restoring via. An asymptotic power series, even one with fractional powers, is available through the Context Menu, under the option Series Asymptotic Series. The resulting dialog, shown in Figure 3, suggests it is possible to obtain an asymptotic power series interactively, either as a series construct or as a truncated expansion. Figure 3 Dialog for Context Menu option: Series Asymptotic Series Unfortunately, Maple does not have a function for generating an asymptotic series with respect to an arbitrary asymptotic basis. However, if is an asymptotic sequence as, then the coefficients in the expansion can be obtained recursively via Multivariate Series The mtaylor command is used to generate a Taylor polynomial for a multivariate function. For example, the Taylor expansion of, taken about, would be of the form

10 Table 6 contains the expansion of at the point. Table 6 Multivariate Taylor expansion of Even though Maple does not have a series construct for the multivariate case, the notion of "series order" is used to determine the degree of the resulting polynomial. Unfortunately, this results in a polynomial of total degree one less than the "series order" used as a parameter in the mtaylor command. Because there is no "series construct" for the multivariate case, Maple does not tack on an order term for expansions generated by the mtaylor command. Because of this, I can recall that colleagues at RHIT would teach their students only about the mtaylor command, even in single-variable calculus. This would avoid the need to follow up with the "convert-to-polynom" step, thereby lessening the syntax burden in the days when all Maple calculations were dependent on knowing the appropriate commands. Interfaces to the mtaylor Command Figure 4 shows the Taylor Approximation tutor from the Student Multivariate Calculus package.

11 Figure 4 Multivariate Calculus Taylor Approximation tutor The first-degree Taylor polynomial for the function, taken at is obtained in Figure 4. In addition, a graph of the function and the Taylor polynomial is drawn. The graph of the first-degree Taylor polynomial is the graph of the tangent plane. At the bottom of the tutor, the TaylorApproximation command can be seen. The syntax of this command contrasts to that of the mtaylor command and to the similarly named command from the Calculus 1 package. Note in particular how the expansion point is expressed, and note that the explicit use of the equation "order = 1" is not required. In the absence of the "output = plot" parameter, the expression for the Taylor polynomial would be returned. Finally, note that both the command and the tutor use "Order" to mean "degree." Given that there is no "series construct" in the multivariate case, and given that both the command and the tutor specifically reference "Approximation," it's striking that the notion of "series order" is used, and used where "degree" would be more appropriate. Table 7 shows the path to a Task Template that provides access to the Taylor Approximation command and tutor. Tools Tasks Browse: Multivariate Calculus Taylor Approximation of a Multivariate Function Taylor Approximation of a Multivariate Function

12 Calculate the Taylor approximation of a specified degree for a multivariate function. Enter the function. Specify an expansion point and order, and then calculate the Taylor approximation. Alternatively, you can use the Taylor Series tutor, a point-and-click interface. There are two ways to launch this tutor. From the Tools menu, select Tutors, Calculus - Multi-Variable and then Taylor Series. Enter a multivariate function below, then click the following Taylor Series button. Table 7 The Task Template "Taylor Approximation of a Multivariate Function"

13 Again, if the Student Multivariate Calculus package is loaded, the Context Menu for an expression will contain the option "Tutors," from which the Taylor Approximation tutor can be selected. This proves to be a more efficient connection to the tutor than the Task Template. Formal Power Series Maple has two separate processes for producing the complete formal power series for. Each is accessed as an option to the convert command, but even though it looks like there is a common interface, the underlying approaches to obtaining the formal power series are different. In most cases, either process will work, but there are functions for which just one will succeed in finding the desired series. Table 8 illustrates the two relevant functionalities. Table 8 Obtaining complete formal power series in Maple It should be obvious from Table 8 that two different functionalities have been activated. In the result on the right, the summation index can be declared by the user, as we show in the following calculation. The Context Menu provides the option Series Formal Power Series. The dialog that appears in shown in Figure 5. Figure 5 Dialog for the Context Menu option: Series Formal Power Series

14 From Figure 5, it should be clear that even from the Context Menu it is possible to declare the summation index in the formal power series returned. Finally, note that one can obtain a complete formal asymptotic power series, as illustrated in Table 9. Table 9 Complete formal asymptotic power series Legal Notice: Maplesoft, a division of Waterloo Maple Inc Maplesoft and Maple are trademarks of Waterloo Maple Inc. This application may contain errors and Maplesoft is not liable for any damages resulting from the use of this material. This application is intended for non-commercial, non-profit use only. Contact Maplesoft for permission if you wish to use this application in for-profit activities.

Without a Vector Calculus Coordinate System

Without a Vector Calculus Coordinate System Classroom Tips and Techniques: Point-and-Click Access to the Differential Operators of Vector Calculus Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft Introduction The -operator

More information

Classroom Tips and Techniques: Electric Field from Distributed Charge

Classroom Tips and Techniques: Electric Field from Distributed Charge Classroom Tips and Techniques: Electric Field from Distributed Charge Introduction Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft This past summer I was asked if Maple could

More information

Classroom Tips and Techniques: Eigenvalue Problems for ODEs - Part 1

Classroom Tips and Techniques: Eigenvalue Problems for ODEs - Part 1 Classroom Tips and Techniques: Eigenvalue Problems for DEs - Part 1 Initializations restart with LinearAlgebra : with Student Calculus1 : with RootFinding : Introduction Robert J. Lopez Emeritus Professor

More information

Moments of Inertia. Maplesoft, a division of Waterloo Maple Inc., 2008

Moments of Inertia. Maplesoft, a division of Waterloo Maple Inc., 2008 Introduction Moments of Inertia Maplesoft, a division of Waterloo Maple Inc., 2008 This application is one of a collection of educational engineering eamples using Maple. These ever stage of the solution,

More information

MAPLE Worksheet Number 7 Derivatives in Calculus

MAPLE Worksheet Number 7 Derivatives in Calculus MAPLE Worksheet Number 7 Derivatives in Calculus The MAPLE command for computing the derivative of a function depends on which of the two ways we used to define the function, as a symbol or as an operation.

More information

A Brief Introduction To. GRTensor. On MAPLE Platform. A write-up for the presentation delivered on the same topic as a part of the course PHYS 601

A Brief Introduction To. GRTensor. On MAPLE Platform. A write-up for the presentation delivered on the same topic as a part of the course PHYS 601 A Brief Introduction To GRTensor On MAPLE Platform A write-up for the presentation delivered on the same topic as a part of the course PHYS 601 March 2012 BY: ARSHDEEP SINGH BHATIA arshdeepsb@gmail.com

More information

Software BioScout-Calibrator June 2013

Software BioScout-Calibrator June 2013 SARAD GmbH BioScout -Calibrator 1 Manual Software BioScout-Calibrator June 2013 SARAD GmbH Tel.: ++49 (0)351 / 6580712 Wiesbadener Straße 10 FAX: ++49 (0)351 / 6580718 D-01159 Dresden email: support@sarad.de

More information

Spectrometer User s Guide

Spectrometer User s Guide Spectrometer User s Guide (Order Codes: V-SPEC, SPRT-VIS, SP-VIS, SP-UV-VIS, ESRT-VIS) The spectrometer is a portable light spectrophotometer, combining a spectrometer and a light source/cuvette holder.

More information

Lab 15 Taylor Polynomials

Lab 15 Taylor Polynomials Name Student ID # Instructor Lab Period Date Due Lab 15 Taylor Polynomials Objectives 1. To develop an understanding for error bound, error term, and interval of convergence. 2. To visualize the convergence

More information

Chapter 9 Ingredients of Multivariable Change: Models, Graphs, Rates

Chapter 9 Ingredients of Multivariable Change: Models, Graphs, Rates Chapter 9 Ingredients of Multivariable Change: Models, Graphs, Rates 9.1 Multivariable Functions and Contour Graphs Although Excel can easily draw 3-dimensional surfaces, they are often difficult to mathematically

More information

Created: 2/3/96 Modified: September 29, Author: Theresa Julia Zielinski Page 1

Created: 2/3/96 Modified: September 29, Author: Theresa Julia Zielinski Page 1 Exploring Orthonormal Functions by Theresa Julia Zielinski Department of Chemistry, Medical Technology, and Physics Monmouth University West Long Branch, NJ 7764-898 tzielins@monmouth.edu Copyright 7 by

More information

Athena Visual Software, Inc. 1

Athena Visual Software, Inc. 1 Athena Visual Studio Visual Kinetics Tutorial VisualKinetics is an integrated tool within the Athena Visual Studio software environment, which allows scientists and engineers to simulate the dynamic behavior

More information

Focusing Learning on Concepts of Introductory Linear Algebra using MAPLE Interactive Tutors

Focusing Learning on Concepts of Introductory Linear Algebra using MAPLE Interactive Tutors Focusing Learning on Concepts of Introductory Linear Algebra using MAPLE Interactive Tutors Leonard Louis Raj leonard.raj@zu.ac.ae Department of Mathematics and Statistics Zayed University United Arab

More information

THE CRYSTAL BALL SCATTER CHART

THE CRYSTAL BALL SCATTER CHART One-Minute Spotlight THE CRYSTAL BALL SCATTER CHART Once you have run a simulation with Oracle s Crystal Ball, you can view several charts to help you visualize, understand, and communicate the simulation

More information

Task 1: Open ArcMap and activate the Spatial Analyst extension.

Task 1: Open ArcMap and activate the Spatial Analyst extension. Exercise 10 Spatial Analyst The following steps describe the general process that you will follow to complete the exercise. Specific steps will be provided later in the step-by-step instructions component

More information

Name Student ID # Instructor Lab Period Date Due. Lab 1 Polynomials

Name Student ID # Instructor Lab Period Date Due. Lab 1 Polynomials Name Student ID # Instructor Lab Period Date Due Lab 1 Polynomials Objectives 1. To become familiar with the definition of a polynomial. 2. To examine some of the properties of the graphs of polynomials.

More information

CityGML XFM Application Template Documentation. Bentley Map V8i (SELECTseries 2)

CityGML XFM Application Template Documentation. Bentley Map V8i (SELECTseries 2) CityGML XFM Application Template Documentation Bentley Map V8i (SELECTseries 2) Table of Contents Introduction to CityGML 1 CityGML XFM Application Template 2 Requirements 2 Finding Documentation 2 To

More information

Sequences and Series

Sequences and Series Sequences and Series What do you think of when you read the title of our next unit? In case your answers are leading us off track, let's review the following IB problems. 1 November 2013 HL 2 3 November

More information

Lab on Taylor Polynomials. This Lab is accompanied by an Answer Sheet that you are to complete and turn in to your instructor.

Lab on Taylor Polynomials. This Lab is accompanied by an Answer Sheet that you are to complete and turn in to your instructor. Lab on Taylor Polynomials This Lab is accompanied by an Answer Sheet that you are to complete and turn in to your instructor. In this Lab we will approimate complicated unctions by simple unctions. The

More information

Multiple group models for ordinal variables

Multiple group models for ordinal variables Multiple group models for ordinal variables 1. Introduction In practice, many multivariate data sets consist of observations of ordinal variables rather than continuous variables. Most statistical methods

More information

Ocean Optics Red Tide UV-VIS Spectrometer (Order Code: SPRT-UV-VIS)

Ocean Optics Red Tide UV-VIS Spectrometer (Order Code: SPRT-UV-VIS) Ocean Optics Red Tide UV-VIS Spectrometer (Order Code: SPRT-UV-VIS) The UV-VIS spectrometer is a portable ultraviolet light and visible light spectrophotometer, combining a spectrometer and a light source/cuvette

More information

MERGING (MERGE / MOSAIC) GEOSPATIAL DATA

MERGING (MERGE / MOSAIC) GEOSPATIAL DATA This help guide describes how to merge two or more feature classes (vector) or rasters into one single feature class or raster dataset. The Merge Tool The Merge Tool combines input features from input

More information

Ratio of Polynomials Fit Many Variables

Ratio of Polynomials Fit Many Variables Chapter 376 Ratio of Polynomials Fit Many Variables Introduction This program fits a model that is the ratio of two polynomials of up to fifth order. Instead of a single independent variable, these polynomials

More information

Assessing the Accuracy of a Rocket's Trajectory Through Space

Assessing the Accuracy of a Rocket's Trajectory Through Space Assessing the Accuracy of a Rocket's Trajectory Through Space The challenge: To explore the impact of changing atmospheric conditions on the trajectory of a rocket. Maplesoft, a division of Waterloo Maple

More information

SECTION 3.6: CHAIN RULE

SECTION 3.6: CHAIN RULE SECTION 3.6: CHAIN RULE (Section 3.6: Chain Rule) 3.6.1 LEARNING OBJECTIVES Understand the Chain Rule and use it to differentiate composite functions. Know when and how to apply the Generalized Power Rule

More information

Zeros and Roots of a Polynomial Function. Return to Table of Contents

Zeros and Roots of a Polynomial Function. Return to Table of Contents Zeros and Roots of a Polynomial Function Return to Table of Contents 182 Real Zeros of Polynomial Functions For a function f(x) and a real number a, if f (a) = 0, the following statements are equivalent:

More information

19. TAYLOR SERIES AND TECHNIQUES

19. TAYLOR SERIES AND TECHNIQUES 19. TAYLOR SERIES AND TECHNIQUES Taylor polynomials can be generated for a given function through a certain linear combination of its derivatives. The idea is that we can approximate a function by a polynomial,

More information

Lab: Newton s Second Law

Lab: Newton s Second Law Ph4_ConstMass2ndLawLab Page 1 of 9 Lab: Newton s Second Law Constant Mass Equipment Needed Qty Equipment Needed Qty 1 Mass and Hanger Set (ME-8967) 1 Motion Sensor (CI-6742) 1 String (SE-8050) 1 m Balance

More information

SECTION 3.5: DIFFERENTIALS and LINEARIZATION OF FUNCTIONS

SECTION 3.5: DIFFERENTIALS and LINEARIZATION OF FUNCTIONS (Section 3.5: Differentials and Linearization of Functions) 3.5.1 SECTION 3.5: DIFFERENTIALS and LINEARIZATION OF FUNCTIONS LEARNING OBJECTIVES Use differential notation to express the approximate change

More information

Bounded Infinite Sequences/Functions : Orders of Infinity

Bounded Infinite Sequences/Functions : Orders of Infinity Bounded Infinite Sequences/Functions : Orders of Infinity by Garimella Ramamurthy Report No: IIIT/TR/2009/247 Centre for Security, Theory and Algorithms International Institute of Information Technology

More information

WORKING WITH DMTI DIGITAL ELEVATION MODELS (DEM)

WORKING WITH DMTI DIGITAL ELEVATION MODELS (DEM) WORKING WITH DMTI DIGITAL ELEVATION MODELS (DEM) Contents (Ctrl-Click to jump to a specific page) Manipulating the DEM Step 1: Finding the DEM Tiles You Need... 2 Step 2: Importing the DEM Tiles into ArcMap...

More information

Algebra Summer Review Packet

Algebra Summer Review Packet Name: Algebra Summer Review Packet About Algebra 1: Algebra 1 teaches students to think, reason, and communicate mathematically. Students use variables to determine solutions to real world problems. Skills

More information

Maplets for Calculus: Improving Student Skills and Understanding in Calculus

Maplets for Calculus: Improving Student Skills and Understanding in Calculus Maplets for Calculus: Improving Student Skills and Understanding in Calculus Douglas B. Meade, University of South Carolina, meade@math.sc.edu Philip B. Yasskin, Texas A&M University, yasskin@math.tamu.edu

More information

Computer Algebra Systems Activity: Developing the Quadratic Formula

Computer Algebra Systems Activity: Developing the Quadratic Formula Computer Algebra Systems Activity: Developing the Quadratic Formula Topic: Developing the Quadratic Formula R. Meisel, April 14, 2009 rollym@vaxxine.com Notes to the Teacher: a) This activity is designed

More information

Application demonstration. BifTools. Maple Package for Bifurcation Analysis in Dynamical Systems

Application demonstration. BifTools. Maple Package for Bifurcation Analysis in Dynamical Systems Application demonstration BifTools Maple Package for Bifurcation Analysis in Dynamical Systems Introduction Milen Borisov, Neli Dimitrova Department of Biomathematics Institute of Mathematics and Informatics

More information

8.5 Taylor Polynomials and Taylor Series

8.5 Taylor Polynomials and Taylor Series 8.5. TAYLOR POLYNOMIALS AND TAYLOR SERIES 50 8.5 Taylor Polynomials and Taylor Series Motivating Questions In this section, we strive to understand the ideas generated by the following important questions:

More information

Math 12: Discrete Dynamical Systems Homework

Math 12: Discrete Dynamical Systems Homework Math 12: Discrete Dynamical Systems Homework Department of Mathematics, Harvey Mudd College Several of these problems will require computational software to help build our insight about discrete dynamical

More information

Chapter 3: Polynomial and Rational Functions

Chapter 3: Polynomial and Rational Functions Chapter 3: Polynomial and Rational Functions 3.1 Polynomial Functions and Their Graphs A polynomial function of degree n is a function of the form P (x) = a n x n + a n 1 x n 1 + + a 1 x + a 0 The numbers

More information

FIT100 Spring 01. Project 2. Astrological Toys

FIT100 Spring 01. Project 2. Astrological Toys FIT100 Spring 01 Project 2 Astrological Toys In this project you will write a series of Windows applications that look up and display astrological signs and dates. The applications that will make up the

More information

August 7, 2007 NUMERICAL SOLUTION OF LAPLACE'S EQUATION

August 7, 2007 NUMERICAL SOLUTION OF LAPLACE'S EQUATION August 7, 007 NUMERICAL SOLUTION OF LAPLACE'S EQUATION PURPOSE: This experiment illustrates the numerical solution of Laplace's Equation using a relaxation method. The results of the relaxation method

More information

The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands.

The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands. GIS LAB 7 The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands. This lab will ask you to work with the Spatial Analyst extension.

More information

Math 1314 Lesson 4 Limits

Math 1314 Lesson 4 Limits Math 1314 Lesson 4 Limits What is calculus? Calculus is the study of change, particularly, how things change over time. It gives us a framework for measuring change using some fairly simple models. In

More information

Vectors and Vector Arithmetic

Vectors and Vector Arithmetic Vectors and Vector Arithmetic Introduction and Goals: The purpose of this lab is to become familiar with the syntax of Maple commands for manipulating and graphing vectors. It will introduce you to basic

More information

Tutorial 23 Back Analysis of Material Properties

Tutorial 23 Back Analysis of Material Properties Tutorial 23 Back Analysis of Material Properties slope with known failure surface sensitivity analysis probabilistic analysis back analysis of material strength Introduction Model This tutorial will demonstrate

More information

Preparing Spatial Data

Preparing Spatial Data 13 CHAPTER 2 Preparing Spatial Data Assessing Your Spatial Data Needs 13 Assessing Your Attribute Data 13 Determining Your Spatial Data Requirements 14 Locating a Source of Spatial Data 14 Performing Common

More information

Introduction. How can we say that one algorithm performs better than another? Quantify the resources required to execute:

Introduction. How can we say that one algorithm performs better than another? Quantify the resources required to execute: Slides by Christopher M. Bourke Instructor: Berthe Y. Choueiry Spring 2006 1 / 1 Computer Science & Engineering 235 Section 2.3 of Rosen cse235@cse.unl.edu Introduction How can we say that one algorithm

More information

1.4 Techniques of Integration

1.4 Techniques of Integration .4 Techniques of Integration Recall the following strategy for evaluating definite integrals, which arose from the Fundamental Theorem of Calculus (see Section.3). To calculate b a f(x) dx. Find a function

More information

16.41 NCPOLY: Non commutative polynomial ideals

16.41 NCPOLY: Non commutative polynomial ideals 644 CHAPTER 16. USER CONTRIBUTED PACKAGES 16.41 NCPOLY: Non commutative polynomial ideals This package allows the user to set up automatically a consistent environment for computing in an algebra where

More information

Generating Function Notes , Fall 2005, Prof. Peter Shor

Generating Function Notes , Fall 2005, Prof. Peter Shor Counting Change Generating Function Notes 80, Fall 00, Prof Peter Shor In this lecture, I m going to talk about generating functions We ve already seen an example of generating functions Recall when we

More information

Project IV Fourier Series

Project IV Fourier Series Project IV Fourier Series Robert Jerrard Goal of the project To develop understanding of how many terms of a Fourier series are required in order to well-approximate the original function, and of the differences

More information

3.1 Scott s March Madness

3.1 Scott s March Madness 3.1 Scott s March Madness A Develop Understanding Task Each year, Scott participates in the Macho March promotion. The goal of Macho March is to raise money for charity by finding sponsors to donate based

More information

Work and Energy. This sum can be determined graphically as the area under the plot of force vs. distance. 1

Work and Energy. This sum can be determined graphically as the area under the plot of force vs. distance. 1 Work and Energy Experiment 18 Work is a measure of energy transfer. In the absence of friction, when positive work is done on an object, there will be an increase in its kinetic or potential energy. In

More information

Maple in Calculus. by Harald Pleym. Maple Worksheets Supplementing. Edwards and Penney. CALCULUS 6th Edition Early Transcendentals - Matrix Version

Maple in Calculus. by Harald Pleym. Maple Worksheets Supplementing. Edwards and Penney. CALCULUS 6th Edition Early Transcendentals - Matrix Version Maple in Calculus by Harald Pleym Maple Worksheets Supplementing Preface Edwards and Penney CALCULUS 6th Edition Early Transcendentals - Matrix Version These worksheets provide a comprehensive Maple supplement

More information

MAT300/500 Programming Project Spring 2019

MAT300/500 Programming Project Spring 2019 MAT300/500 Programming Project Spring 2019 Please submit all project parts on the Moodle page for MAT300 or MAT500. Due dates are listed on the syllabus and the Moodle site. You should include all neccessary

More information

ISSP User Guide CY3207ISSP. Revision C

ISSP User Guide CY3207ISSP. Revision C CY3207ISSP ISSP User Guide Revision C Cypress Semiconductor 198 Champion Court San Jose, CA 95134-1709 Phone (USA): 800.858.1810 Phone (Intnl): 408.943.2600 http://www.cypress.com Copyrights Copyrights

More information

Name Student ID # Instructor Lab Period Date Due. Lab 5 Continuity

Name Student ID # Instructor Lab Period Date Due. Lab 5 Continuity Name Student ID # Instructor Lab Period Date Due Lab 5 Continuity Objectives 1. To visually represent the concept of continuity. 2. To develop an informal intuition for continuity. Continuity A fuction

More information

Effect of Significant Digits on Derivative of a Function

Effect of Significant Digits on Derivative of a Function Differentiation of Continuous Functions Effect of Significant Digits on Derivative of a Function Introduction Ana Catalina Torres, Autar Kaw University of South Florida United States of America kaw@eng.usf.edu

More information

Just DOS Difference of Perfect Squares. Now the directions say solve or find the real number solutions :

Just DOS Difference of Perfect Squares. Now the directions say solve or find the real number solutions : 5.4 FACTORING AND SOLVING POLYNOMIAL EQUATIONS To help you with #1-1 THESE BINOMIALS ARE EITHER GCF, DOS, OR BOTH!!!! Just GCF Just DOS Difference of Perfect Squares Both 1. Break each piece down.. Pull

More information

Weekly Activities Ma 110

Weekly Activities Ma 110 Weekly Activities Ma 110 Fall 2008 As of October 27, 2008 We give detailed suggestions of what to learn during each week. This includes a reading assignment as well as a brief description of the main points

More information

The Sommerfeld Polynomial Method: Harmonic Oscillator Example

The Sommerfeld Polynomial Method: Harmonic Oscillator Example Chemistry 460 Fall 2017 Dr. Jean M. Standard October 2, 2017 The Sommerfeld Polynomial Method: Harmonic Oscillator Example Scaling the Harmonic Oscillator Equation Recall the basic definitions of the harmonic

More information

Orbit Support Pack for Excel. user manual

Orbit Support Pack for Excel. user manual Orbit Support Pack for Excel user manual Information in this document is subject to change without notice. Companies, names and data used in examples herein are fictitious unless noted otherwise. No part

More information

In other words, we are interested in what is happening to the y values as we get really large x values and as we get really small x values.

In other words, we are interested in what is happening to the y values as we get really large x values and as we get really small x values. Polynomial functions: End behavior Solutions NAME: In this lab, we are looking at the end behavior of polynomial graphs, i.e. what is happening to the y values at the (left and right) ends of the graph.

More information

Central Difference Approximation of the First Derivative

Central Difference Approximation of the First Derivative Differentiation of Continuous Functions Central Difference Approximation of the First Derivative Introduction Ana Catalina Torres, Autar Kaw University of South Florida United States of America kaw@eng.usf.edu

More information

UNIT 3. Rational Functions Limits at Infinity (Horizontal and Slant Asymptotes) Infinite Limits (Vertical Asymptotes) Graphing Rational Functions

UNIT 3. Rational Functions Limits at Infinity (Horizontal and Slant Asymptotes) Infinite Limits (Vertical Asymptotes) Graphing Rational Functions UNIT 3 Rational Functions Limits at Infinity (Horizontal and Slant Asymptotes) Infinite Limits (Vertical Asymptotes) Graphing Rational Functions Recall From Unit Rational Functions f() is a rational function

More information

Hotelling s One- Sample T2

Hotelling s One- Sample T2 Chapter 405 Hotelling s One- Sample T2 Introduction The one-sample Hotelling s T2 is the multivariate extension of the common one-sample or paired Student s t-test. In a one-sample t-test, the mean response

More information

N-CN Complex Cube and Fourth Roots of 1

N-CN Complex Cube and Fourth Roots of 1 N-CN Complex Cube and Fourth Roots of 1 Task For each odd positive integer, the only real number solution to is while for even positive integers n, x = 1 and x = 1 are solutions to x n = 1. In this problem

More information

Double Integrals using Riemann Sums

Double Integrals using Riemann Sums Double Integrals using Riemann Sums Introduction and Goals: The goal of this lab is to become more familiar with Riemann sums both as a definition for the double integral and as an approximation method

More information

Missouri Educator Gateway Assessments

Missouri Educator Gateway Assessments Missouri Educator Gateway Assessments June 2014 Content Domain Range of Competencies Approximate Percentage of Test Score I. Number and Operations 0001 0002 19% II. Algebra and Functions 0003 0006 36%

More information

Limits and Continuity

Limits and Continuity Limits and Continuity MATH 151 Calculus for Management J. Robert Buchanan Department of Mathematics Fall 2018 Objectives After this lesson we will be able to: Determine the left-hand and right-hand limits

More information

Mathematics with Maple

Mathematics with Maple Mathematics with Maple A Comprehensive E-Book Harald Pleym Preface The main objective of these Maple worksheets, organized for use with all Maple versions from Maple 14, is to show how the computer algebra

More information

DonnishJournals

DonnishJournals DonnishJournals 2041-1189 Donnish Journal of Educational Research and Reviews. Vol 2(1) pp. 018-024 January, 2015. http:///djerr Copyright 2015 Donnish Journals Original Research Paper Plotting with MAXIMA

More information

Matlab GUI for Elementary Flows as an Educational Tool

Matlab GUI for Elementary Flows as an Educational Tool Matlab GUI for Elementary Flows as an Educational Tool Gabriel A. Heredia Acevedo, Bernardo Restrepo, and Jonathan Holguino Polytechnic University of Puerto Rico Abstract Elementary flows in fluid mechanics

More information

The View Data module

The View Data module The module Use to examine stored compound data (H, S, C p (T), G, etc.) in Compound type databases and list solutions and their constituents in Solution type databases. Table of contents Section 1 Section

More information

Kinetics Activity 1 Objective

Kinetics Activity 1 Objective Grade level: 9-12 Subject: Chemistry Time required: 45 to 90 minutes Kinetic by Todd Morstein Study of Chemical Rates of Reaction An introductory lesson on determining the differential rate law and rate

More information

B553 Lecture 1: Calculus Review

B553 Lecture 1: Calculus Review B553 Lecture 1: Calculus Review Kris Hauser January 10, 2012 This course requires a familiarity with basic calculus, some multivariate calculus, linear algebra, and some basic notions of metric topology.

More information

Rational Functions. Dr. Philippe B. Laval Kennesaw State University. October 19, 2000

Rational Functions. Dr. Philippe B. Laval Kennesaw State University. October 19, 2000 Rational Functions Dr. Philippe B. Laval Kennesaw State University October 19, 2000 Abstract This handout is a quick review of rational functions. It also contains a set of problems to guide the student

More information

There are four irrational roots with approximate values of

There are four irrational roots with approximate values of Power of the Quadratic Formula 1 y = (x ) - 8(x ) + 4 a = 1, b = -8, c = 4 Key 1. Consider the equation y = x 4 8x + 4. It may be a surprise, but we can use the quadratic formula to find the x-intercepts

More information

Mathematical Models with Maple

Mathematical Models with Maple Algebraic Biology 005 151 Mathematical Models with Maple Tetsu YAMAGUCHI Applied System nd Division, Cybernet Systems Co., Ltd., Otsuka -9-3, Bunkyo-ku, Tokyo 11-001, Japan tetsuy@cybernet.co.jp Abstract

More information

MAPLETS FOR CALCULUS: IMPROVING STUDENT SKILLS AND UNDERSTANDING IN CALCULUS

MAPLETS FOR CALCULUS: IMPROVING STUDENT SKILLS AND UNDERSTANDING IN CALCULUS MAPLETS FOR CALCULUS: IMPROVING STUDENT SKILLS AND UNDERSTANDING IN CALCULUS Douglas B. Meade Dept of Mathematics Univ of South Carolina Columbia, SC 29208 meade@math.sc.edu (803) 777-6183 Philip B. Yasskin

More information

AP Calculus BC Syllabus

AP Calculus BC Syllabus AP Calculus BC Syllabus Course Overview AP Calculus BC is the study of the topics covered in college-level Calculus I and Calculus II. This course includes instruction and student assignments on all of

More information

v Prerequisite Tutorials GSSHA WMS Basics Watershed Delineation using DEMs and 2D Grid Generation Time minutes

v Prerequisite Tutorials GSSHA WMS Basics Watershed Delineation using DEMs and 2D Grid Generation Time minutes v. 10.1 WMS 10.1 Tutorial GSSHA WMS Basics Creating Feature Objects and Mapping Attributes to the 2D Grid Populate hydrologic parameters in a GSSHA model using land use and soil data Objectives This tutorial

More information

AP Calculus Chapter 9: Infinite Series

AP Calculus Chapter 9: Infinite Series AP Calculus Chapter 9: Infinite Series 9. Sequences a, a 2, a 3, a 4, a 5,... Sequence: A function whose domain is the set of positive integers n = 2 3 4 a n = a a 2 a 3 a 4 terms of the sequence Begin

More information

Life Cycle of Stars. Photometry of star clusters with SalsaJ. Authors: Daniel Duggan & Sarah Roberts

Life Cycle of Stars. Photometry of star clusters with SalsaJ. Authors: Daniel Duggan & Sarah Roberts Photometry of star clusters with SalsaJ Authors: Daniel Duggan & Sarah Roberts Photometry of star clusters with SalsaJ Introduction Photometry is the measurement of the intensity or brightness of an astronomical

More information

7.1 Indefinite Integrals Calculus

7.1 Indefinite Integrals Calculus 7.1 Indefinite Integrals Calculus Learning Objectives A student will be able to: Find antiderivatives of functions. Represent antiderivatives. Interpret the constant of integration graphically. Solve differential

More information

Section 5.2 Series Solution Near Ordinary Point

Section 5.2 Series Solution Near Ordinary Point DE Section 5.2 Series Solution Near Ordinary Point Page 1 of 5 Section 5.2 Series Solution Near Ordinary Point We are interested in second order homogeneous linear differential equations with variable

More information

Math 137 Calculus 1 for Honours Mathematics. Course Notes

Math 137 Calculus 1 for Honours Mathematics. Course Notes Math 37 Calculus for Honours Mathematics Course Notes Barbara A. Forrest and Brian E. Forrest Fall 07 / Version. Copyright c Barbara A. Forrest and Brian E. Forrest. All rights reserved. August, 07 All

More information

New Jersey Center for Teaching and Learning. Progressive Mathematics Initiative

New Jersey Center for Teaching and Learning. Progressive Mathematics Initiative Slide 1 / 70 New Jersey Center for Teaching and Learning Progressive Mathematics Initiative This material is made freely available at www.njctl.org and is intended for the non-commercial use of students

More information

A SHORT INTRODUCTION TO ADAMS

A SHORT INTRODUCTION TO ADAMS A. AHADI, P. LIDSTRÖM, K. NILSSON A SHORT INTRODUCTION TO ADAMS FOR MECHANICAL ENGINEERS DIVISION OF MECHANICS DEPARTMENT OF MECHANICAL ENGINEERING LUND INSTITUTE OF TECHNOLOGY 2017 1 FOREWORD THESE EXERCISES

More information

Topic Outline for Calculus BC

Topic Outline for Calculus BC Techniques of antidifferentiation Antiderivatives following directly from derivatives of basic functions. Antiderivatives by substitution of variables (including change of limits for definite integrals).

More information

Building Inflation Tables and CER Libraries

Building Inflation Tables and CER Libraries Building Inflation Tables and CER Libraries January 2007 Presented by James K. Johnson Tecolote Research, Inc. Copyright Tecolote Research, Inc. September 2006 Abstract Building Inflation Tables and CER

More information

MATH 137 : Calculus 1 for Honours Mathematics. Online Assignment #2. Introduction to Sequences

MATH 137 : Calculus 1 for Honours Mathematics. Online Assignment #2. Introduction to Sequences 1 MATH 137 : Calculus 1 for Honours Mathematics Online Assignment #2 Introduction to Sequences Due by 9:00 pm on WEDNESDAY, September 19, 2018 Instructions: Weight: 2% This assignment covers the topics

More information

Exercises for Windows

Exercises for Windows Exercises for Windows CAChe User Interface for Windows Select tool Application window Document window (workspace) Style bar Tool palette Select entire molecule Select Similar Group Select Atom tool Rotate

More information

Taylor series. Chapter Introduction From geometric series to Taylor polynomials

Taylor series. Chapter Introduction From geometric series to Taylor polynomials Chapter 2 Taylor series 2. Introduction The topic of this chapter is find approximations of functions in terms of power series, also called Taylor series. Such series can be described informally as infinite

More information

The Quantum Harmonic Oscillator

The Quantum Harmonic Oscillator The Classical Analysis Recall the mass-spring system where we first introduced unforced harmonic motion. The DE that describes the system is: where: Note that throughout this discussion the variables =

More information

Lab 1 Uniform Motion - Graphing and Analyzing Motion

Lab 1 Uniform Motion - Graphing and Analyzing Motion Lab 1 Uniform Motion - Graphing and Analyzing Motion Objectives: < To observe the distance-time relation for motion at constant velocity. < To make a straight line fit to the distance-time data. < To interpret

More information

ON SITE SYSTEMS Chemical Safety Assistant

ON SITE SYSTEMS Chemical Safety Assistant ON SITE SYSTEMS Chemical Safety Assistant CS ASSISTANT WEB USERS MANUAL On Site Systems 23 N. Gore Ave. Suite 200 St. Louis, MO 63119 Phone 314-963-9934 Fax 314-963-9281 Table of Contents INTRODUCTION

More information

, (1) e i = ˆσ 1 h ii. c 2016, Jeffrey S. Simonoff 1

, (1) e i = ˆσ 1 h ii. c 2016, Jeffrey S. Simonoff 1 Regression diagnostics As is true of all statistical methodologies, linear regression analysis can be a very effective way to model data, as along as the assumptions being made are true. For the regression

More information

Making the grade: Part II

Making the grade: Part II 1997 2009, Millennium Mathematics Project, University of Cambridge. Permission is granted to print and copy this page on paper for non commercial use. For other uses, including electronic redistribution,

More information

Section 4.1: Sequences and Series

Section 4.1: Sequences and Series Section 4.1: Sequences and Series In this section, we shall introduce the idea of sequences and series as a necessary tool to develop the proof technique called mathematical induction. Most of the material

More information

Theory of Computation

Theory of Computation Theory of Computation Dr. Sarmad Abbasi Dr. Sarmad Abbasi () Theory of Computation 1 / 38 Lecture 21: Overview Big-Oh notation. Little-o notation. Time Complexity Classes Non-deterministic TMs The Class

More information