[100] 091 News, Tutorial by Dec. 10, 2012 =======================================

Size: px
Start display at page:

Download "[100] 091 News, Tutorial by Dec. 10, 2012 ======================================="

Transcription

1 [100] 091 revised on cemmath The Simple is the Best News Dec. 10, 2012 ======================================= Cemmath 2.22 (a new name of Msharpmath) is newly upgraded. indefinite integrals are treated by a dot function '.integ(a,b,f(x))'. For example, #> double f(x) = exp(-x*x);.integ(-inf,inf,f); sqrt(pi); ans = ans = #> double f(x) = 1/sqrt(1-x^2);.integ(0,1,f); asin(1); ans = ans = For discrete data, either '.spline(x,y).splint', 'trapz' or 'cumtrapz' can be employed. Nov. 26, 2012 ======================================= Cemmath 2.20 (a new name of Msharpmath) has a few revisions. Three different grammars for an iterative command 'for'. The following two commands in C-language, for(i = a; i <= b; i += c ) stmt; // if a < b and c > 0 for(i = a; i >= b; i -= c ) stmt; // if a > b and c > 0 are working in cemm# as it is. Also, an alternative expression for.i (a,b,c=1) stmt; for[10] stmt; works in cemm#. For example, 1

2 #> s = 0; for.n(1,10) s += n; // = 55 s = 0 s = 1 s = 3... s = 55 // Pibonachi sequence, #> (a,b)=(1,1); for[10] (a,b) = (b,a+b);; b; b = 144 Note that exchanging values among variables are done by tuples such that #> (a,b,c) = (1,2,3); (b,c,a) = (a,b,c); a = 1 b = 2 c = 3 b = 1 c = 2 a = 3 The old command "A..B" for dot product is changed to "A**B". A.wide(n) = A._n ; // a new operator "._" replaces old one ".." #> (1:12)._4; ans = [ ] [ ] [ ] Nov. 19, 2012 ======================================= Cemmath 2.19 (a new name of Msharpmath) handles stiff ODEs (ordinary differential equations) by Spoke '.stiff(tol=0.01)'. An example is from the van der Pol equations #> ode.x[15000](0,300) ( y'' = 100*(1-y^2)*y'-y, y=2, y'=0).stiff.plot; 2

3 Oct. 22, 2012 ======================================= In declaring a polynomial, Cemmath 2.16 announces the most simplest method. It is just by using a leading dot! [ list ] is a matrix.[ list ] is a polynomial!!! #>.[ 1,2,3 ]; // old version [ 1,2,3 ].poly can be used alternatively y = x^2 + 2x + 3 roots [ -1 - i ] [ -1 + i ] vertex at ( -1, 2 ) y_minimum = 2 y-axis intersect ( 0, 3 ) symmetry at x = -1 directrix at y = 1.75 focus at ( -1, 2.25 ) #>.[1,3]*.[1,9,7]*.[1,-5,3,4] ; // (x+3)(x^2+9x+7)(x^3-5x^2+3x+4) ans = poly( ) = x^6 +7x^5-23x^4-109x^3 +45x^2 +199x +84 dot-only function '.tdma(a,b,c,d, na,nb)' is implemented for tridiagonal matrix algorithm. 0 x 0 matrix [] is available now. dot functions ".horzcat", ".vertcat ", ".diagcat " arguments..horzcat(a1,a2,a3,...) // horizontal concatenation.vertcat(a1,a2,a3,... ) // vertical concatenation, stack now handle multiple 3

4 .diagcat(a1,a2,a3,...) // diagonal concatenation, blkdiag in matlab When two arguments are involved, binary operators work also A B //.horzcat(a,b) A _ B //.vertcat(a,b) A \_ B //.diagcat(a,b) A = B // A = A B A _= B // A = A _ B A \_= B // A = A \_ B Oct. 04, 2012 ======================================= A special variable ans is implemented in Cemmath V2.14 as in other softwares such as Matlab. All other variables are of fixed data type, but the special variable ans can be changed each time it is defined. For example, #> 3+4 ; ans = 7 #> ans / 10 ; ans = 0.7 #> [ 1,2,3 ] ; ans = [ ] #> ans.* ans ; ans = [ ] A few dot-only-functions are implemented.bisect(a,b, f(x)).secant(a,b,f(x)).spline(x,f).spline1(x,f).polyfit(x,f, kth) // to find a root of f(x)=0 // root of f(x)=0 via the secant method // 3 rd -order spline interpolation // 1 st -order spline interpolation // kth-degree polynomial regression.regress(x,f,mftn(x)) // regression curve by matrix mftn(double x) Data set can be connected by splines and represented by piecewise continuous polynomials as follows. In a spline matrix, the first two columns indicate both ends of each interval. #> x = [ ];; #> f = [ ];; 4

5 #> P =.spline(x,f); // 1st and 2nd columns for interval P = [ ] [ ] [ ] #> P.splplot; //.spline(x,f).splplot; #> [ x', f' ].plot+ ; #>.regress(x,f,1).plot+(1,5); #> P.spldiff.splplot; //.spline(x,f).spldiff.splplot; differentiate #> P.splint.splplot; //.spline(x,f).splint.splplot; integrate Sep. 23, 2012 ======================================= Operators for set are available from Cemmath beta V2.13. We believe that eduction of set concept in High-Schools can be particularly aided by these operators. A ++ B // set union, [2,3,4]++[3,4,5] = [2,3,4,5] A -- B // set difference, [2,3,4]- -[3,4,5] = [2] A /\ B // set intersection, [2,3,4] /\ [3,4,5] = [3,4] ++A // ++A = A++A, remove duplicate elements, 5

6 A ++= B // A = A ++ B A --= B // A = A -- B A /\= B // A = A /\ B Example usages are listed below. #> matrix.format("%3g"); #> A = [2,3,4,3,4,6]; B = [1,2,3,2,3,8,8,9]; A = [ ] B = [ ] #> ++[1,2,3,1,2] ; ans = [1,2,3] #> A++B; ans = [ ] #> A--B; B--A; ans = [ 4 6 ] ans = [ ] #> A /\ B; ans = [ 2 3 ] #> (0:2:30) /\ (0:3:30); ans = [ ] Sep. 18, 2012 ======================================= Cemmath beta Version V2.12 is released on the homepage. In this new version,dot functions are refined to cover the Bessel functions and special polynomials..i_nu(x).j_nu(x).k_nu(x).y_nu(x).p_n(x) // Legendre polynomial.t_n(x) // Tchebyshev polynomial.h_n(x) // Hermite polynomial.l_n(x) // Laguerre polynomial // Bessel functions #> nu = 1;; x = 0.3;; #>.J_nu(x); ans = #>.I_nu+1/2(x); ans = #>.K_nu*nu(x); ans = #>.Y_nu+2/3(x); ans = #>.J_nu( 0.3:0.1:0.6 ); ans = [ ] Therefore, math.j_nu(x) in old version is no more recommended. A member function of a matrix 'A.rowskip(k)' is newly added. 6

7 // // end of file //

Homework #6 Brief Solutions 2012

Homework #6 Brief Solutions 2012 Homework #6 Brief Solutions %page 95 problem 4 data=[-,;-,;,;4,] data = - - 4 xk=data(:,);yk=data(:,);s=csfit(xk,yk,-,) %Using the program to find the coefficients S =.456 -.456 -.. -.5.9 -.5484. -.58.87.

More information

Final Exam Review Algebra Semester 1

Final Exam Review Algebra Semester 1 Final Exam Review Algebra 015-016 Semester 1 Name: Module 1 Find the inverse of each function. 1. f x 10 4x. g x 15x 10 Use compositions to check if the two functions are inverses. 3. s x 7 x and t(x)

More information

State the domain and range of the relation. EX: {(-1,1), (1,5), (0,3)} 1 P a g e Province Mathematics Southwest TN Community College

State the domain and range of the relation. EX: {(-1,1), (1,5), (0,3)} 1 P a g e Province Mathematics Southwest TN Community College A relation is a set of ordered pairs of real numbers. The domain, D, of a relation is the set of all first coordinates of the ordered pairs in the relation (the xs). The range, R, of a relation is the

More information

9.1: GRAPHING QUADRATICS ALGEBRA 1

9.1: GRAPHING QUADRATICS ALGEBRA 1 9.1: GRAPHING QUADRATICS ALGEBRA 1 OBJECTIVES I will be able to graph quadratics: Given in Standard Form Given in Vertex Form Given in Intercept Form What does the graph of a quadratic look like? https://www.desmos.com/calculator

More information

MATLAB primer for CHE 225

MATLAB primer for CHE 225 MATLAB primer for CHE 225 The following pages contain a brief description of the MATLAB features are used in CHE 225. This document is best used in conjunction with the MATLAB codes posted on Vista. Find

More information

Things to Know for the Algebra I Regents

Things to Know for the Algebra I Regents Types of Numbers: Real Number: any number you can think of (integers, rational, irrational) Imaginary Number: square root of a negative number Integers: whole numbers (positive, negative, zero) Things

More information

Polymath 6. Overview

Polymath 6. Overview Polymath 6 Overview Main Polymath Menu LEQ: Linear Equations Solver. Enter (in matrix form) and solve a new system of simultaneous linear equations. NLE: Nonlinear Equations Solver. Enter and solve a new

More information

Huei-Huang Lee. Programming with MATLAB2016 SDC ACCESS CODE. Better Textbooks. Lower Prices. UNIQUE CODE INSIDE

Huei-Huang Lee. Programming with MATLAB2016 SDC ACCESS CODE. Better Textbooks. Lower Prices.   UNIQUE CODE INSIDE Programming with Huei-Huang Lee MATLAB2016 SDC P U B L I C AT I O N S Better Textbooks. Lower Prices. www.sdcpublications.com ACCESS CODE UNIQUE CODE INSIDE Powered by TCPDF (www.tcpdf.org) Visit the following

More information

Friday, 11 January 13. Interpolation

Friday, 11 January 13. Interpolation Interpolation Interpolation Interpolation is not a branch of mathematic but a collection of techniques useful for solving computer graphics problems Basically an interpolant is a way of changing one number

More information

Concept of Curve Fitting Difference with Interpolation

Concept of Curve Fitting Difference with Interpolation Curve Fitting Content Concept of Curve Fitting Difference with Interpolation Estimation of Linear Parameters by Least Squares Curve Fitting by Polynomial Least Squares Estimation of Non-linear Parameters

More information

An introduction to interpolation and splines

An introduction to interpolation and splines An introduction to interpolation and splines Kenneth H. Carpenter, EECE KSU November 22, 1999 revised November 20, 2001, April 24, 2002, April 14, 2004 1 Introduction Suppose one wishes to draw a curve

More information

f( x ), or a solution to the equation f( x) 0. You are already familiar with ways of solving

f( x ), or a solution to the equation f( x) 0. You are already familiar with ways of solving The Bisection Method and Newton s Method. If f( x ) a function, then a number r for which f( r) 0 is called a zero or a root of the function f( x ), or a solution to the equation f( x) 0. You are already

More information

Polynomials tend to oscillate (wiggle) a lot, even when our true function does not.

Polynomials tend to oscillate (wiggle) a lot, even when our true function does not. AMSC/CMSC 460 Computational Methods, Fall 2007 UNIT 2: Spline Approximations Dianne P O Leary c 2001, 2002, 2007 Piecewise polynomial interpolation Piecewise polynomial interpolation Read: Chapter 3 Skip:

More information

Numerical Methods in Physics Lecture 2 Interpolation

Numerical Methods in Physics Lecture 2 Interpolation Numerical Methods in Physics Pat Scott Department of Physics, Imperial College November 8, 2016 Slides available from http://astro.ic.ac.uk/pscott/ course-webpage-numerical-methods-201617 Outline The problem

More information

Homework #6 Brief Solutions 2011

Homework #6 Brief Solutions 2011 Homework #6 Brief Solutions %page 95 problem 4 data=[-,;-,;,;4,] data = - - 4 xk=data(:,);yk=data(:,);s=csfit(xk,yk,-,) %Using the program to find the coefficients S =.456 -.456 -.. -.5.9 -.5484. -.58.87.

More information

Handout 4 - Interpolation Examples

Handout 4 - Interpolation Examples Handout 4 - Interpolation Examples Middle East Technical University Example 1: Obtaining the n th Degree Newton s Interpolating Polynomial Passing through (n+1) Data Points Obtain the 4 th degree Newton

More information

Splines and Piecewise Interpolation. Hsiao-Lung Chan Dept Electrical Engineering Chang Gung University, Taiwan

Splines and Piecewise Interpolation. Hsiao-Lung Chan Dept Electrical Engineering Chang Gung University, Taiwan Splines and Piecewise Interpolation Hsiao-Lung Chan Dept Electrical Engineering Chang Gung University, Taiwan chanhl@mail.cgu.edu.tw Splines n 1 intervals and n data points 2 Splines (cont.) Go through

More information

Thursday 1/8 1 * syllabus, Introduction * preview reading assgt., chapter 1 (modeling) * HW review chapters 1, 2, & 3

Thursday 1/8 1 * syllabus, Introduction * preview reading assgt., chapter 1 (modeling) * HW review chapters 1, 2, & 3 Topics and Syllabus Class # Text Reading I. NUMERICAL ANALYSIS CHAPRA AND CANALE A. INTRODUCTION AND MATLAB REVIEW :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::Week

More information

P.5-P.6 Functions & Analyzing Graphs of Functions p.58-84

P.5-P.6 Functions & Analyzing Graphs of Functions p.58-84 P.5-P.6 Functions & Analyzing Graphs of Functions p.58-84 Objectives: Determine whether relations between two variables are functions. Use function notation and evaluate functions. Find the domains of

More information

Section 1.6 & 1.7 Parent Functions and Transformations

Section 1.6 & 1.7 Parent Functions and Transformations Math 150 c Lynch 1 of 8 Section 1.6 & 1.7 Parent Functions and Transformations Piecewise Functions Example 1. Graph the following piecewise functions. 2x + 3 if x < 0 (a) f(x) = x if x 0 1 2 (b) f(x) =

More information

A. Matrix-wise and element-wise operations

A. Matrix-wise and element-wise operations USC GSBME MATLAB CLASS Reviewing previous session Second session A. Matrix-wise and element-wise operations A.1. Matrix-wise operations So far we learned how to define variables and how to extract data

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

Unit 1: Sections Skill Set

Unit 1: Sections Skill Set MthSc 106 Fall 2011 Calculus of One Variable I : Calculus by Briggs and Cochran Section 1.1: Review of Functions Unit 1: Sections 1.1 3.3 Skill Set Find the domain and range of a function. 14, 17 13, 15,

More information

Course Number 432/433 Title Algebra II (A & B) H Grade # of Days 120

Course Number 432/433 Title Algebra II (A & B) H Grade # of Days 120 Whitman-Hanson Regional High School provides all students with a high- quality education in order to develop reflective, concerned citizens and contributing members of the global community. Course Number

More information

PROGRAMMING AND ENGINEERING COMPUTING WITH MATLAB Huei-Huang Lee SDC. Better Textbooks. Lower Prices.

PROGRAMMING AND ENGINEERING COMPUTING WITH MATLAB Huei-Huang Lee SDC. Better Textbooks. Lower Prices. PROGRAMMING AND ENGINEERING COMPUTING WITH MATLAB 2018 Huei-Huang Lee SDC P U B L I C AT I O N S Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit the following

More information

Computational Physics PHYS 420

Computational Physics PHYS 420 Computational Physics PHYS 420 Dr Richard H. Cyburt Assistant Professor of Physics My office: 402c in the Science Building My phone: (304) 384-6006 My email: rcyburt@concord.edu My webpage: www.concord.edu/rcyburt

More information

Remark. Jacobs University Visualization and Computer Graphics Lab : ESM4A - Numerical Methods 331

Remark. Jacobs University Visualization and Computer Graphics Lab : ESM4A - Numerical Methods 331 Remark Reconsidering the motivating example, we observe that the derivatives are typically not given by the problem specification. However, they can be estimated in a pre-processing step. A good estimate

More information

Geometric Modeling of Curves

Geometric Modeling of Curves Curves Locus of a point moving with one degree of freedom Locus of a one-dimensional parameter family of point Mathematically defined using: Explicit equations Implicit equations Parametric equations (Hermite,

More information

UNIT 1: NUMBER LINES, INTERVALS, AND SETS

UNIT 1: NUMBER LINES, INTERVALS, AND SETS ALGEBRA II CURRICULUM OUTLINE 2011-2012 OVERVIEW: 1. Numbers, Lines, Intervals and Sets 2. Algebraic Manipulation: Rational Expressions and Exponents 3. Radicals and Radical Equations 4. Function Basics

More information

I. Function Characteristics

I. Function Characteristics I. Function Characteristics Interval of possible x values for a given function. (Left,Right) Interval of possible y values for a given function. (down, up) What is happening at the far ends of the graph?

More information

CK 12 Algebra II with Trigonometry Concepts 1

CK 12 Algebra II with Trigonometry Concepts 1 10.1 Parabolas with Vertex at the Origin Answers 1. up 2. left 3. down 4.focus: (0, 0.5), directrix: y = 0.5 5.focus: (0.0625, 0), directrix: x = 0.0625 6.focus: ( 1.25, 0), directrix: x = 1.25 7.focus:

More information

For more info and downloads go to: Gerrit Stols

For more info and downloads go to:   Gerrit Stols For more info and downloads go to: http://school-maths.com Gerrit Stols Acknowledgements GeoGebra is dynamic mathematics open source (free) software for learning and teaching mathematics in schools. It

More information

Interpolation - 2D mapping Tutorial 1: triangulation

Interpolation - 2D mapping Tutorial 1: triangulation Tutorial 1: triangulation Measurements (Zk) at irregular points (xk, yk) Ex: CTD stations, mooring, etc... The known Data How to compute some values on the regular spaced grid points (+)? The unknown data

More information

Properties of Quadratic functions

Properties of Quadratic functions Name Today s Learning Goals: #1 How do we determine the axis of symmetry and vertex of a quadratic function? Properties of Quadratic functions Date 5-1 Properties of a Quadratic Function A quadratic equation

More information

Derivative. Bernstein polynomials: Jacobs University Visualization and Computer Graphics Lab : ESM4A - Numerical Methods 313

Derivative. Bernstein polynomials: Jacobs University Visualization and Computer Graphics Lab : ESM4A - Numerical Methods 313 Derivative Bernstein polynomials: 120202: ESM4A - Numerical Methods 313 Derivative Bézier curve (over [0,1]): with differences. being the first forward 120202: ESM4A - Numerical Methods 314 Derivative

More information

Teaching Manual Math 2131

Teaching Manual Math 2131 Math 2131 Linear Algebra Labs with MATLAB Math 2131 Linear algebra with Matlab Teaching Manual Math 2131 Contents Week 1 3 1 MATLAB Course Introduction 5 1.1 The MATLAB user interface...........................

More information

Midterm Exam with solutions

Midterm Exam with solutions Midterm Exam with solutions CS227-Introduction to Scientific Computation November 8, 2011 1. The following is a transcript of a MATLAB session. >> x=1/62.5 x = 0.016000000000000 >> y=(1+x)-1 y = 0.016000000000000

More information

Section 18-1: Graphical Representation of Linear Equations and Functions

Section 18-1: Graphical Representation of Linear Equations and Functions Section 18-1: Graphical Representation of Linear Equations and Functions Prepare a table of solutions and locate the solutions on a coordinate system: f(x) = 2x 5 Learning Outcome 2 Write x + 3 = 5 as

More information

Obtaining Information from a Function s Graph.

Obtaining Information from a Function s Graph. Obtaining Information from a Function s Graph Summary about using closed dots, open dots, and arrows on the graphs 1 A closed dot indicate that the graph does not extend beyond this point and the point

More information

4.0 Programming with MATLAB

4.0 Programming with MATLAB 4.0 Programming with MATLAB 4.1 M-files The term M-file is obtained from the fact that such files are stored with.m extension. M-files are alternative means of performing computations so as to expand MATLAB

More information

8 Piecewise Polynomial Interpolation

8 Piecewise Polynomial Interpolation Applied Math Notes by R. J. LeVeque 8 Piecewise Polynomial Interpolation 8. Pitfalls of high order interpolation Suppose we know the value of a function at several points on an interval and we wish to

More information

Today is the last day to register for CU Succeed account AND claim your account. Tuesday is the last day to register for my class

Today is the last day to register for CU Succeed account AND claim your account. Tuesday is the last day to register for my class Today is the last day to register for CU Succeed account AND claim your account. Tuesday is the last day to register for my class Back board says your name if you are on my roster. I need parent financial

More information

practice: quadratic functions [102 marks]

practice: quadratic functions [102 marks] practice: quadratic functions [102 marks] A quadratic function, f(x) = a x 2 + bx, is represented by the mapping diagram below. 1a. Use the mapping diagram to write down two equations in terms of a and

More information

Introduction to Programming for Engineers Spring Final Examination. May 10, Questions, 170 minutes

Introduction to Programming for Engineers Spring Final Examination. May 10, Questions, 170 minutes Final Examination May 10, 2011 75 Questions, 170 minutes Notes: 1. Before you begin, please check that your exam has 28 pages (including this one). 2. Write your name and student ID number clearly on your

More information

UNIT 3 EXPRESSIONS AND EQUATIONS Lesson 3: Creating Quadratic Equations in Two or More Variables

UNIT 3 EXPRESSIONS AND EQUATIONS Lesson 3: Creating Quadratic Equations in Two or More Variables Guided Practice Example 1 Find the y-intercept and vertex of the function f(x) = 2x 2 + x + 3. Determine whether the vertex is a minimum or maximum point on the graph. 1. Determine the y-intercept. The

More information

MAT 275 Laboratory 2 Matrix Computations and Programming in MATLAB

MAT 275 Laboratory 2 Matrix Computations and Programming in MATLAB MATLAB sessions: Laboratory MAT 75 Laboratory Matrix Computations and Programming in MATLAB In this laboratory session we will learn how to. Create and manipulate matrices and vectors.. Write simple programs

More information

MATLAB Lesson I. Chiara Lelli. October 2, Politecnico di Milano

MATLAB Lesson I. Chiara Lelli. October 2, Politecnico di Milano MATLAB Lesson I Chiara Lelli Politecnico di Milano October 2, 2012 MATLAB MATLAB (MATrix LABoratory) is an interactive software system for: scientific computing statistical analysis vector and matrix computations

More information

MATLAB Modul 3. Introduction

MATLAB Modul 3. Introduction MATLAB Modul 3 Introduction to Computational Science: Modeling and Simulation for the Sciences, 2 nd Edition Angela B. Shiflet and George W. Shiflet Wofford College 2014 by Princeton University Press Introduction

More information

Sung-Eui Yoon ( 윤성의 )

Sung-Eui Yoon ( 윤성의 ) CS480: Computer Graphics Curves and Surfaces Sung-Eui Yoon ( 윤성의 ) Course URL: http://jupiter.kaist.ac.kr/~sungeui/cg Today s Topics Surface representations Smooth curves Subdivision 2 Smooth Curves and

More information

Finding the axis of symmetry, vertex, and roots of a parabola

Finding the axis of symmetry, vertex, and roots of a parabola Finding the axis of symmetry, vertex, and roots of a parabola 1) Find the Axis of Symmetry of y = x 2-4x + 3 (The AOS is the vertical line that splits the parabola in 2 equal parts) Axis of Symmetry Axis

More information

Unit 2-2: Writing and Graphing Quadratics NOTE PACKET. 12. I can use the discriminant to determine the number and type of solutions/zeros.

Unit 2-2: Writing and Graphing Quadratics NOTE PACKET. 12. I can use the discriminant to determine the number and type of solutions/zeros. Unit 2-2: Writing and Graphing Quadratics NOTE PACKET Name: Period Learning Targets: Unit 2-1 12. I can use the discriminant to determine the number and type of solutions/zeros. 1. I can identify a function

More information

MAE 384 Numerical Methods for Engineers

MAE 384 Numerical Methods for Engineers MAE 384 Numerical Methods for Engineers Instructor: Huei-Ping Huang office: ERC 359, email: hp.huang@asu.edu (Huei rhymes with way ) Tu/Th 9:00-10:15 PM WGHL 101 Textbook: Numerical Methods for Engineers

More information

8.2 Graph and Write Equations of Parabolas

8.2 Graph and Write Equations of Parabolas 8.2 Graph and Write Equations of Parabolas Where is the focus and directrix compared to the vertex? How do you know what direction a parabola opens? How do you write the equation of a parabola given the

More information

Algebra 1 Notes Quarter

Algebra 1 Notes Quarter Algebra 1 Notes Quarter 3 2014 2015 Name: ~ 1 ~ Table of Contents Unit 9 Exponent Rules Exponent Rules for Multiplication page 6 Negative and Zero Exponents page 10 Exponent Rules Involving Quotients page

More information

GRAPH 4.4. Megha K. Raman APRIL 22, 2015

GRAPH 4.4. Megha K. Raman APRIL 22, 2015 GRAPH 4.4 By Megha K. Raman APRIL 22, 2015 1. Preface... 4 2. Introduction:... 4 3. Plotting a function... 5 Sample funtions:... 9 List of Functions:... 10 Constants:... 10 Operators:... 11 Functions:...

More information

QUADRATIC AND CUBIC GRAPHS

QUADRATIC AND CUBIC GRAPHS NAME SCHOOL INDEX NUMBER DATE QUADRATIC AND CUBIC GRAPHS KCSE 1989 2012 Form 3 Mathematics Working Space 1. 1989 Q22 P1 (a) Using the grid provided below draw the graph of y = -2x 2 + x + 8 for values

More information

Functions. Copyright Cengage Learning. All rights reserved.

Functions. Copyright Cengage Learning. All rights reserved. Functions Copyright Cengage Learning. All rights reserved. 2.2 Graphs Of Functions Copyright Cengage Learning. All rights reserved. Objectives Graphing Functions by Plotting Points Graphing Functions with

More information

Math 225 Scientific Computing II Outline of Lectures

Math 225 Scientific Computing II Outline of Lectures Math 225 Scientific Computing II Outline of Lectures Spring Semester 2003 I. Interpolating polynomials Lagrange formulation of interpolating polynomial Uniqueness of interpolating polynomial of degree

More information

Laboratory 1 Introduction to MATLAB for Signals and Systems

Laboratory 1 Introduction to MATLAB for Signals and Systems Laboratory 1 Introduction to MATLAB for Signals and Systems INTRODUCTION to MATLAB MATLAB is a powerful computing environment for numeric computation and visualization. MATLAB is designed for ease of use

More information

CS 450 Numerical Analysis. Chapter 7: Interpolation

CS 450 Numerical Analysis. Chapter 7: Interpolation Lecture slides based on the textbook Scientific Computing: An Introductory Survey by Michael T. Heath, copyright c 2018 by the Society for Industrial and Applied Mathematics. http://www.siam.org/books/cl80

More information

UNIVERSITY OF CALIFORNIA COLLEGE OF ENGINEERING

UNIVERSITY OF CALIFORNIA COLLEGE OF ENGINEERING UNIVERSITY OF CALIFORNIA COLLEGE OF ENGINEERING E7: INTRODUCTION TO COMPUTER PROGRAMMING FOR SCIENTISTS AND ENGINEERS Professor Raja Sengupta Spring 2010 Second Midterm Exam April 14, 2010 [30 points ~

More information

See the course website for important information about collaboration and late policies, as well as where and when to turn in assignments.

See the course website for important information about collaboration and late policies, as well as where and when to turn in assignments. COS Homework # Due Tuesday, February rd See the course website for important information about collaboration and late policies, as well as where and when to turn in assignments. Data files The questions

More information

Chapter 10. Exploring Conic Sections

Chapter 10. Exploring Conic Sections Chapter 10 Exploring Conic Sections Conics A conic section is a curve formed by the intersection of a plane and a hollow cone. Each of these shapes are made by slicing the cone and observing the shape

More information

AP Calculus Summer Review Packet School Year. Name

AP Calculus Summer Review Packet School Year. Name AP Calculus Summer Review Packet 016-017 School Year Name Objectives for AP/CP Calculus Summer Packet 016-017 I. Solving Equations & Inequalities (Problems # 1-6) Using the properties of equality Solving

More information

What is log a a equal to?

What is log a a equal to? How would you differentiate a function like y = sin ax? What is log a a equal to? How do you prove three 3-D points are collinear? What is the general equation of a straight line passing through (a,b)

More information

HiQ Analysis, Visualization, and Report Generation

HiQ Analysis, Visualization, and Report Generation Visually Organize Your Analysis Projects in an Interactive Notebook is an interactive problem-solving environment where you analyze, visualize, and document real-world science and engineering problems.

More information

ES 240: Scientific and Engineering Computation. a function f(x) that can be written as a finite series of power functions like

ES 240: Scientific and Engineering Computation. a function f(x) that can be written as a finite series of power functions like Polynomial Deinition a unction () that can be written as a inite series o power unctions like n is a polynomial o order n n ( ) = A polynomial is represented by coeicient vector rom highest power. p=[3-5

More information

Algebra 2CP S1 Final Exam Information. Your final exam will consist of two parts: Free Response and Multiple Choice

Algebra 2CP S1 Final Exam Information. Your final exam will consist of two parts: Free Response and Multiple Choice Algebra 2CP Name Algebra 2CP S1 Final Exam Information Your final exam will consist of two parts: Free Response and Multiple Choice Part I: Free Response: Five questions, 10 points each (50 points total),

More information

STAT/MATH 395 A - PROBABILITY II UW Winter Quarter Matlab Tutorial

STAT/MATH 395 A - PROBABILITY II UW Winter Quarter Matlab Tutorial STAT/MATH 395 A - PROBABILITY II UW Winter Quarter 2016 Néhémy Lim Matlab Tutorial 1 Introduction Matlab (standing for matrix laboratory) is a high-level programming language and interactive environment

More information

Acc. Pre Calculus Day 5 - Parabolas Notesheet PARABOLAS

Acc. Pre Calculus Day 5 - Parabolas Notesheet PARABOLAS Acc. Pre Calculus Day 5 - Parabolas Notesheet Name Date Block 1) Complete these truths about parabolas: * Parabolas are - shaped. PARABOLAS * Parabolas have a line of. * Parabolas are the graphs of functions.

More information

Graphing Calculator Comparison Activities

Graphing Calculator Comparison Activities Graphing Calculator Comparison Activities CASIO fx-9750gii VS. TI-83, TI-83 Plus, TI-84, TI-84 Plus Finding Extrema Algebraically Texas Instruments: TI-83 Plus, TI-84 Plus, & TI-84 SE CASIO GRAPHING CALCULATORS

More information

F.BF.B.3: Graphing Polynomial Functions

F.BF.B.3: Graphing Polynomial Functions F.BF.B.3: Graphing Polynomial Functions 1 Given the graph of the line represented by the equation f(x) = 2x + b, if b is increased by 4 units, the graph of the new line would be shifted 4 units 1) right

More information

Engineering Analysis ENG 3420 Fall Dan C. Marinescu Office: HEC 439 B Office hours: Tu-Th 11:00-12:00

Engineering Analysis ENG 3420 Fall Dan C. Marinescu Office: HEC 439 B Office hours: Tu-Th 11:00-12:00 Engineering Analysis ENG 3420 Fall 2009 Dan C. Marinescu Office: HEC 439 B Office hours: Tu-Th 11:00-12:00 1 Lecture 24 Attention: The last homework HW5 and the last project are due on Tuesday November

More information

Math Sections 4.4 and 4.5 Rational Functions. 1) A rational function is a quotient of polynomial functions:

Math Sections 4.4 and 4.5 Rational Functions. 1) A rational function is a quotient of polynomial functions: 1) A rational function is a quotient of polynomial functions: 2) Explain how you find the domain of a rational function: a) Write a rational function with domain x 3 b) Write a rational function with domain

More information

Part VI. Scientific Computing in Python. Alfredo Parra : Scripting with Python Compact Max-PlanckMarch 6-10,

Part VI. Scientific Computing in Python. Alfredo Parra : Scripting with Python Compact Max-PlanckMarch 6-10, Part VI Scientific Computing in Python Compact Course @ Max-PlanckMarch 6-10, 2017 63 Doing maths in Python Standard sequence types (list, tuple,... ) Can be used as arrays Can contain different types

More information

Exam 2 Review. 2. What the difference is between an equation and an expression?

Exam 2 Review. 2. What the difference is between an equation and an expression? Exam 2 Review Chapter 1 Section1 Do You Know: 1. What does it mean to solve an equation? 2. What the difference is between an equation and an expression? 3. How to tell if an equation is linear? 4. How

More information

Quadratic Forms Formula Vertex Axis of Symmetry. 2. Write the equation in intercept form. 3. Identify the Vertex. 4. Identify the Axis of Symmetry.

Quadratic Forms Formula Vertex Axis of Symmetry. 2. Write the equation in intercept form. 3. Identify the Vertex. 4. Identify the Axis of Symmetry. CC Algebra II Test # Quadratic Functions - Review **Formulas Name Quadratic Forms Formula Vertex Axis of Symmetry Vertex Form f (x) = a(x h) + k Standard Form f (x) = ax + b x + c x = b a Intercept Form

More information

) 2 + (y 2. x 1. y c x2 = y

) 2 + (y 2. x 1. y c x2 = y Graphing Parabola Parabolas A parabola is a set of points P whose distance from a fixed point, called the focus, is equal to the perpendicular distance from P to a line, called the directrix. Since this

More information

Math 1330 Final Exam Review Covers all material covered in class this semester.

Math 1330 Final Exam Review Covers all material covered in class this semester. Math 1330 Final Exam Review Covers all material covered in class this semester. 1. Give an equation that could represent each graph. A. Recall: For other types of polynomials: End Behavior An even-degree

More information

Warm-Up Exercises. Find the x-intercept and y-intercept 1. 3x 5y = 15 ANSWER 5; y = 2x + 7 ANSWER ; 7

Warm-Up Exercises. Find the x-intercept and y-intercept 1. 3x 5y = 15 ANSWER 5; y = 2x + 7 ANSWER ; 7 Warm-Up Exercises Find the x-intercept and y-intercept 1. 3x 5y = 15 ANSWER 5; 3 2. y = 2x + 7 7 2 ANSWER ; 7 Chapter 1.1 Graph Quadratic Functions in Standard Form A quadratic function is a function that

More information

ECON 502 INTRODUCTION TO MATLAB Nov 9, 2007 TA: Murat Koyuncu

ECON 502 INTRODUCTION TO MATLAB Nov 9, 2007 TA: Murat Koyuncu ECON 502 INTRODUCTION TO MATLAB Nov 9, 2007 TA: Murat Koyuncu 0. What is MATLAB? 1 MATLAB stands for matrix laboratory and is one of the most popular software for numerical computation. MATLAB s basic

More information

A Brief Introduction to MATLAB

A Brief Introduction to MATLAB A Brief Introduction to MATLAB MATLAB (Matrix Laboratory) is an interactive software system for numerical computations and graphics. As the name suggests, MATLAB was first designed for matrix computations:

More information

(5) ifit/math: «One Class to do some Math» God damn it! Just compute it! ifit workshop NBI Jan 2012 Math - 1

(5) ifit/math: «One Class to do some Math» God damn it! Just compute it! ifit workshop NBI Jan 2012 Math - 1 (5) ifit/math: «One Class to do some Math» God damn it! Just compute it! ifit workshop NBI Jan 2012 Math - 1 Math: perform mathematical operations seamlessly As we have seen there is a unique,

More information

Starting MATLAB To logon onto a Temple workstation at the Tech Center, follow the directions below.

Starting MATLAB To logon onto a Temple workstation at the Tech Center, follow the directions below. What is MATLAB? MATLAB (short for MATrix LABoratory) is a language for technical computing, developed by The Mathworks, Inc. (A matrix is a rectangular array or table of usually numerical values.) MATLAB

More information

In some applications it may be important that the extrema of the interpolating function are within the extrema of the given data.

In some applications it may be important that the extrema of the interpolating function are within the extrema of the given data. Shape-preserving piecewise poly. interpolation In some applications it may be important that the extrema of the interpolating function are within the extrema of the given data. For example: If you the

More information

(Spline, Bezier, B-Spline)

(Spline, Bezier, B-Spline) (Spline, Bezier, B-Spline) Spline Drafting terminology Spline is a flexible strip that is easily flexed to pass through a series of design points (control points) to produce a smooth curve. Spline curve

More information

ALGEBRA II A CURRICULUM OUTLINE

ALGEBRA II A CURRICULUM OUTLINE ALGEBRA II A CURRICULUM OUTLINE 2013-2014 OVERVIEW: 1. Linear Equations and Inequalities 2. Polynomial Expressions and Equations 3. Rational Expressions and Equations 4. Radical Expressions and Equations

More information

Algebra 2: Chapter 8 Part I Practice Quiz Unofficial Worked-Out Solutions

Algebra 2: Chapter 8 Part I Practice Quiz Unofficial Worked-Out Solutions Algebra 2: Chapter 8 Part I Practice Quiz Unofficial Worked-Out Solutions In working with rational functions, I tend to split them up into two types: Simple rational functions are of the form y = a x h

More information

Moore Catholic High School Math Department

Moore Catholic High School Math Department Moore Catholic High School Math Department Geometry Vocabulary The following is a list of terms and properties which are necessary for success in a Geometry class. You will be tested on these terms during

More information

PRESCOTT UNIFIED SCHOOL DISTRICT District Instructional Guide Revised 6/3/15

PRESCOTT UNIFIED SCHOOL DISTRICT District Instructional Guide Revised 6/3/15 PRESCOTT UNIFIED SCHOOL DISTRICT District Instructional Guide Revised 6/3/15 Grade Level: PHS Subject: Precalculus Quarter/Semester: 1/1 Core Text: Precalculus with 1 st week Chapter P - Prerequisites

More information

EE 350. Continuous-Time Linear Systems. Recitation 1. 1

EE 350. Continuous-Time Linear Systems. Recitation 1. 1 EE 350 Continuous-Time Linear Systems Recitation 1 Recitation 1. 1 Recitation 1 Topics MATLAB Programming Basic Operations, Built-In Functions, and Variables m-files Graphics: 2D plots EE 210 Review Branch

More information

Conic Sections. College Algebra

Conic Sections. College Algebra Conic Sections College Algebra Conic Sections A conic section, or conic, is a shape resulting from intersecting a right circular cone with a plane. The angle at which the plane intersects the cone determines

More information

4.3 Quadratic functions and their properties

4.3 Quadratic functions and their properties 4.3 Quadratic functions and their properties A quadratic function is a function defined as f(x) = ax + x + c, a 0 Domain: the set of all real numers x-intercepts: Solutions of ax + x + c = 0 y-intercept:

More information

Introduction to Matlab

Introduction to Matlab Introduction to Matlab Kristian Sandberg Department of Applied Mathematics University of Colorado Goal The goal with this worksheet is to give a brief introduction to the mathematical software Matlab.

More information

Mathematical Methods and Modeling Laboratory class. Numerical Integration of Ordinary Differential Equations

Mathematical Methods and Modeling Laboratory class. Numerical Integration of Ordinary Differential Equations Mathematical Methods and Modeling Laboratory class Numerical Integration of Ordinary Differential Equations Exact Solutions of ODEs Cauchy s Initial Value Problem in normal form: Recall: if f is locally

More information

An interesting related problem is Buffon s Needle which was first proposed in the mid-1700 s.

An interesting related problem is Buffon s Needle which was first proposed in the mid-1700 s. Using Monte Carlo to Estimate π using Buffon s Needle Problem An interesting related problem is Buffon s Needle which was first proposed in the mid-1700 s. Here s the problem (in a simplified form). Suppose

More information

ENGR Fall Exam 1

ENGR Fall Exam 1 ENGR 1300 Fall 01 Exam 1 INSTRUCTIONS: Duration: 60 minutes Keep your eyes on your own work! Keep your work covered at all times! 1. Each student is responsible for following directions. Read carefully..

More information

WK # Given: f(x) = ax2 + bx + c

WK # Given: f(x) = ax2 + bx + c Alg2H Chapter 5 Review 1. Given: f(x) = ax2 + bx + c Date or y = ax2 + bx + c Related Formulas: y-intercept: ( 0, ) Equation of Axis of Symmetry: x = Vertex: (x,y) = (, ) Discriminant = x-intercepts: When

More information

2.2 Graphs Of Functions. Copyright Cengage Learning. All rights reserved.

2.2 Graphs Of Functions. Copyright Cengage Learning. All rights reserved. 2.2 Graphs Of Functions Copyright Cengage Learning. All rights reserved. Objectives Graphing Functions by Plotting Points Graphing Functions with a Graphing Calculator Graphing Piecewise Defined Functions

More information

COORDINATE GEOMETRY CHANGE OF AXES EXERCISE 1. The point to which the origin should be shifted in order to eliminate x and y terms in the equation 4x 9y 8x 36y 4 0 is (1, ) ( 4, ( 1,) 4) (1, ). In order

More information