A Poor Example of a Project - But Gives Some Direction

Size: px
Start display at page:

Download "A Poor Example of a Project - But Gives Some Direction"

Transcription

1 A Poor Example of a Project - But Gives Some Direction Bill Knowlton Materials Science & Engineering Electrical & Computer Engineering Boise State Unversity The idea behind this example is two-fold: 1. To demonstrate some of the analytical capabilities of Mathematica for which the student may use to examine physical concepts when provided data and equations. 2. To demonstrate the below-minimum amount of computational work that is required for a project in this course Note: The comments and discussion on the data and results of the manipulation of the data in this example and the labeling (arrows, text,&/or legends) of the plots are below the minimum required. Ideal Gas Law Example In this example project, we will examine the ideal gas law [1] in several ways: - Plot the ideal gas law examining pressure as a function of volume and temperature (i.e., p=p(v,t) ) using several different approaches 1. Using the Range[ ] and Evaluate[ ] commands 2. Using the Table[ ] and Show[ ] commands 3. Using the Manipulate[ ] command - Fit ideal gas law data using several approaches 1. Using the Manipulate[ ] command 2. Using the NonlinearModelFit[ ] curve fitting command with several error analyses 1. Using the Range[ ] and Evaluate[ ] commands Here, the Ideal gas law defined as a function where p, v, n, and T are the pressure (atm), volume (liters), number of moles (moles), and temperature (K), respectively. The range of temperatures is defined using the command Range[ ]. The Evaluate[ ] command with the Range[ ] command allow a function to be plotted as a function of two variables. In the example below, pressure is plotted as a function of volume and temperature. The command is good for plotting 3 variables on a 2D plot.

2 2 Project Example.nb In[1]:= Clear v, R, T, p, n initialization of variables p v_, n_, T_ : n R T Ideal gas law defined as a function where p, v v, n, and T are the pressure, volume, number of moles, and temperature, respectively Constants R.826; ideal gas constant, atm L mol K imin 2; imax 5; step 5; T Range imin, imax, step ; defining the temperature range plots Plot Evaluate p v, 1, T, v, 1, 1, Frame True, GridLines Automatic, PlotRange, 1,, 5, PlotStyle RGBColor,, 1, FrameLabel "v L ", "p atm ", PlotLabel "p vs T for T 2 5K & n 1 mole" 5 4 Out[6]= p atm

3 Project Example.nb 3 Adding arrows and text to a plot can be done several ways. Below, I just copied and pasted the plot and then used Drawing Tools under the Graphics menu. 5 4 In[7]:= p atm 3 2 Increasing Temperature v L Increasing Temperature Out[7]= p atm v L Comment on the plot: From the isotherm plot, it can be seen that pressure is inversely proportional to volume - that is, as volume increases, pressure decreases. Additionally, as temperature increases both pressure and volume increase demonstrating that pressure and volume are directly proportional to temperature. Note that labels and arrows have been added to help guide the reader.

4 4 Project Example.nb 2. Using the Table[ ] and Show[ ] commands - Good for plotting 3 variables on a 2D plot In the example below, pressure is plotted as a function of volume and temperature using the Table[ ] command, which allows a function generate data from an equation that is a function of one or more varialbes - in this case, two variables. The Table is named as another variable and then the Show[ ] command is used to plot the data in the table. In[8]:= Clear v, R, T, p, pressureplots p v_, n_, T_ : n R T v Constants R.826; atm L mol K pressureplots Table Plot p v, 1, T, v, 1, 1, Frame True, GridLines Automatic, PlotRange, 1,, 5, PlotStyle RGBColor,, 1, FrameLabel "v L ", "p atm ", PlotLabel "p vs T for T 2 5K & n 1 mole", T, 2, 5, 5 ; Show pressureplots 5 p vs T for T 2 5K & n 1 mole 4 Out[12]= p atm Comment on the plot: The Table[ ] command produces the same isotherm plot as when using the Evaluate[ ] & Range[ ] commands. Note that labels and arrows need to be added to the plot to help guide the reader.

5 Project Example.nb 5 2. Using the Manipulate[ ] command - good for seeing trends in an equation and rough fitting of data with a particular equation A more interactive method to examine the effect of multiple variables in a plot is to use the Manipulate[ ] command. In the example below, the plot of Pressure versus Volume taken from above and wrapping the Manipulate[ ] command around it with the addition of both temperature and the number of moles results in the same P vs V plot plus two levers: temperature and moles. The levers of each can be moved and the plot will change accordingly. In[13]:= Clear v, R, T, p p v_, n_, T_ : n R T v Constants R.826; atm L mol K Plots Manipulate Plot p v, n, T, v, 1, 1, Frame True, GridLines Automatic, PlotRange, 1,, 5, PlotStyle RGBColor,, 1, FrameLabel "v L ", "p atm ", PlotLabel "p vs T for T 2 5K", T, 3, "Temperature K ", 1, 5, 5, n, 1, "n moles ",.1, 5,.1 both temperature and number of moles can be changed Temperature K n moles 5 p vs T for T 2 5K 4 Out[16]= 3 p atm v L Comment : Increasing either the moles or the temperature by moving the slides from left to right increases the pressure. Note that by clicking on the + results in the actual value of the corresponding variable to be displayed.

6 6 Project Example.nb We can also import pressure versus volume data In[57]:= Clear v, R, T, p p v_, n_, T_ : n R T v Constants R.826; atm L mol K Importing data; Note: to insert the location of your file, use "Insert" from pull down menu and then select "File Path" data Import "D:\\Bill\\Bsu\\Courses\\MSE 51 ElecOptDielProps\\Projects Exams Quizzes MSE 51 \\Projects\\pressure.csv" Plots dataplot ListPlot data, Frame True, GridLines Automatic, PlotStyle RGBColor, 1, 1, AbsolutePointSize 1, FrameLabel "v L ", "p atm " Manipulate Show Plot p v, n, T, v,.1, 1, Frame True, GridLines Automatic, PlotRange, 1,, 14, PlotStyle RGBColor,, 1, FrameLabel "v L ", "p atm ", PlotLabel "p vs T for T 2 5K", dataplot, T, 3, "Temperature K ", 1, 5, 5, n, 1, "n moles ",.1, 5,.1 Out[6]=.42, ,.98, , 2.15, , 3.17, , 3.98, , 5.1, , 7.99, , 1, Out[61]= p atm

7 Project Example.nb 7 Temperature K n moles 14 p vs T for T 2 5K 12 Out[62]= 1 p atm Comment : Using the Manipulate[ ] command provides a means to understand the degree to which certan parameters affect a model or equation.

8 8 Project Example.nb For Non-linear curve fitting and output of various statistical error analysis parameters [2-5], one can use the NonlinearModelFit[ ] function. In[23]:= Clear SomeData, SomeDataplot, SomeDatafit, plotfit Place data in list SomeData,, 1, 1, 2, 4.1, 3, 8.9, 4, 16.1, 5, 24.9 Create scatter plot of data SomeDataplot ListPlot SomeData, Frame True, GridLines Automatic, PlotStyle RGBColor 1,,, PointSize.2`, FrameLabel "y data arb. Units ", "x data arb. Units " Perform fit and define the fitting function Print "y ", SomeDatafit NonlinearModelFit SomeData, a x^2 b x c, a, b, c, x Plotting the NonlinearModelFit data. Note that SomeDatafit has to show that it is a function of x; I.e., SomeDatafit x plotfit Plot SomeDatafit x, x,, 5, Frame True, GridLines Automatic, PlotStyle RGBColor, 1,, FrameLabel "x", "y" showing the plots pplot and plotpfit on the same graph Show SomeDataplot, plotfit, PlotLabel "Fit Green Line; Data Red Points" Out[24]=,, 1, 1, 2, 4.1, 3, 8.9, 4, 16.1, 5, Out[25]= x data arb. Units y FittedModel x x 2

9 Project Example.nb Out[27]= y Out[28]= x data arb. Units Comment : The Non Linear Curve fitting model shows very close agreement to the data. The degree of "goodness of fit" is examined in the next section. Note that labels and arrows need to be added to the plots to help guide the reader.

10 1 Project Example.nb Error analysis on Nonlinear Curve Fitting that includes: 1. Listing the Nonlinear Fit Model 2. Lising some of the parameters associated with the fit 3. Coefficient of Determination 4. Adjusted Coefficient of Determination 5. Residuals - listing and plotting 6. Confidence Intervals - listing and plotting Note: When using any of these parameters, it is insufficient to use one in a project without explaining what the parameter is and why it is being used. For discussion and definitions of data and error analyses, see referenced [2-5]. In[29]:= Use LinearModelFit command that is new to Mathematica 7 Print "y ", SomeDatafit NonlinearModelFit SomeData, a x^2 b x c, a, b, c, x Print "Model Parameter Table ", SomeDatafit "ParameterTable" Lists some parameters of the fit Print "R 2 ", SomeDatafit "RSquared" Provides the R 2 value Print "Adjusted R 2 ", SomeDatafit "AdjustedRSquared" Provides the adjusted R 2 value Print "Residuals ", SomeDatafit "FitResiduals" Lists the Residuals of the fit Print "Plot of Residuals" ListPlot SomeDatafit "FitResiduals", PlotRange.1,.1, Filling Axis, Frame True, PlotLabel "Residuals from Fit" Provides the Residuals of the fit ListPlot Table SomeDatafit "ParameterConfidenceIntervals", ConfidenceLevel p, p,.8,.85,.9,.95,.99, Frame True, GridLines Automatic, PlotLabel "Confidence Intervals: 8, 85, 9, 95, 99 " y FittedModel x x 2 Model Parameter Table R Adjusted R Estimate Standard Error t-statistic P-Value a b c Residuals , , , ,.11, Plot of Residuals

11 Project Example.nb Out[35]= Out[36]= Comment: When using any of these parameters, it is insufficient to use one in a project without explaining what the parameter is and why it is being used. For discussion and definitions of data and error analyses, see referenced [2-5]. Note that labels and arrows need to be added to the plots to help guide the reader.

12 12 Project Example.nb Calculus can be performed on the Nonlinear Fit Model: 1. Integration: with and without limits - 2 approaches 2. 1st Derivative - 3 approaches 3. 2nd Derivative - 3 approaches In[37]:= integration without limits 2 ways Integrate SomeDatafit x, x SomeDatafit x x integration with limits 2 ways Integrate SomeDatafit x, x, 2, 5 5 SomeDatafit x x 2 1st derivative 3 ways D SomeDatafit x, x x SomeDatafit x SomeDatafit' x Second Derivative 3 ways D SomeDatafit x, x, 2 x x SomeDatafit x SomeDatafit'' x Out[37]= x x x 3 Out[38]= x x x 3 Out[39]= Out[4]= Out[41]= x Out[42]= x Out[43]= x Out[44]= Out[45]= Out[46]=

13 Project Example.nb 13 Indefinite integrals and derivatives can be plotted: 1. Integration: with or without limits 2. 1st Derivative 3. 2nd Derivative In[47]:= Clear isomedatafit, dsomedatafit Defining functions to plot Assigning a function name to the integral of SomeDatafit isomedatafit x_ Integrate SomeDatafit x, x ; Assigning a function name to the derivative of SomeDatafit dsomedatafit x_ SomeDatafit' x ; Plotting the functions Plot isomedatafit x, x,, 1, Frame True, GridLines Automatic, PlotStyle RGBColor, 1,, FrameLabel "x", " y x", PlotLabel "First Derivative of Nonlinear Fit Model" Plot dsomedatafit x, x,, 1, Frame True, GridLines Automatic, PlotStyle RGBColor, 1,, FrameLabel "x", "y'", PlotLabel "Second Derivative of Nonlinear Fit Model" Out[5]= y x

14 14 Project Example.nb 2 15 Out[51]= y' x Comments: The Nonlinear Model is a 3rd order or degree polynomial fit. The first derivative should show a quadratic response while the second derivative should show a linear response. Indeed, this is what is observed in the plots above. Performing calculus on models can provide useful information including: o Differentiation Slope Max-Min Inflection points Curvature and radius of curvature Develop Differentials o Integration Sum under curve (y*x relationships) Within cycle where paths differ and hysteresis effects exist Develop State functions Thermodynamics - work and energy relations References: [1] W. Seese and G. Daub, Basic chemistry, 4th Ed. (Prentice Hall, 1985) p [2] D. Skoog, D. West, & F. Holler, Fundatmentals of Analytical Chemistry, 5th Ed., (Sauners College Publishing, New york; 1963) Ch. 1 [3] H. Motulsky & A. Christopoulos, Fitting Models to Biological Data using Linear and Nonlinear Regression -A practical Guide to Curve Fitting, Version 4 (GraphPad Prism; 23) p [4] Interpreting Regression Results, OriginLabs - Origin Software - [5] H. Berendsen, A Student s Guide to Data & Error Analysis, (Cambridge Press, 211), p Note: [3] & [4] are posted

15 Project Example.nb 15 Work in Progress In[52]:= Clear v, R, T, p, nplots n T_, p_, v_ : p v R T Constants R.826; atm L mol K nplots Table Plot n T, 1, v, T, 273, 4, Frame True, GridLines Automatic, PlotRange.1,.1, PlotStyle RGBColor,, 1, FrameLabel "T K ", "n number of moles ", PlotLabel "n vs T for T 273 4K & p 1 atm", v,.5, 2,.25 ; Show nplots.1 n vs T for T 273 4K & p 1 atm.8 Out[56]= n number of moles

MSE 310/ECE 340. Instructor: Bill Knowlton. Initialize data Clear somedata, someplot. Place data in list somedata

MSE 310/ECE 340. Instructor: Bill Knowlton. Initialize data Clear somedata, someplot. Place data in list somedata MSE 3/ECE 340 Instructor: Bill Knowlton Examples of Plotting Functions ü Example 1: Using the command ListPlot[ ] to plot data in a scatter plot In[1]:= Initialize data Clear somedata someplot Place data

More information

Fitting Data in Mathematica

Fitting Data in Mathematica ã Bill Knowlton Fitting Data in Mathematica There are two ways to fit data: 1. Fit[ ] command (less comlicated) Format: Fit[data set, {x variable,y function}, x variable] (2 examles below) 2. FindFit[

More information

School of Materials Science & Engineering. Problem Set 3 Solutions

School of Materials Science & Engineering. Problem Set 3 Solutions Problem Set 3 Solutions 1. ABET PROBLEM: a. Ability to apply knowledge of mathematics, science, and engineering. (P) 1. You are a photoelectron spectroscopist in the new Boise State Center for Materials

More information

Concepts of Approximate Error: Approximate Error, Absolute Approximate Error, Relative Approximate Error, and Absolute Relative Approximate Error

Concepts of Approximate Error: Approximate Error, Absolute Approximate Error, Relative Approximate Error, and Absolute Relative Approximate Error Concepts of Approximate Error: Approximate Error, Absolute Approximate Error, Relative Approximate Error, and Absolute Relative Approximate Error Sean Rodby, Luke Snyder, Autar Kaw University of South

More information

School of Materials Science & Engineering

School of Materials Science & Engineering Problem Set 1 Solutions Reminder From Syllabus: Problem Set Format Checklist: At the top of the page, include your name, problem set number, course name & number, and date. Submitted problem sets must

More information

Alpha Decay. 1. Introduction. 2. Constants, Commands, and Functions. 2.1 Constants:

Alpha Decay. 1. Introduction. 2. Constants, Commands, and Functions. 2.1 Constants: 1. Introduction Alpha Decay One of the earliest and most convincing verifications of the validity of quantum mechanics was the resolution of the paradox of alpha decay observed in heavy nuclei. Gamow,

More information

Problem Set 2 Solutions

Problem Set 2 Solutions Problem Set 2 Solutions Reminder From Syllabus: Problem Set Format Checklist: At the top of the page, include your name, problem set number, course name & number, and date. Submitted problem sets must

More information

Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1

Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1 Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1 Questions Example Differentiate the function y = ae v + b v + c v 2. Example Differentiate the function y = A + B x

More information

Mathematica for Calculus II (Version 9.0)

Mathematica for Calculus II (Version 9.0) Mathematica for Calculus II (Version 9.0) C. G. Melles Mathematics Department United States Naval Academy December 31, 013 Contents 1. Introduction. Volumes of revolution 3. Solving systems of equations

More information

M&M Exponentials Exponential Function

M&M Exponentials Exponential Function M&M Exponentials Exponential Function Teacher Guide Activity Overview In M&M Exponentials students will experiment with growth and decay functions. Students will also graph their experimental data and

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

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

5-Sep-15 PHYS101-2 GRAPHING

5-Sep-15 PHYS101-2 GRAPHING GRAPHING Objectives 1- To plot and analyze a graph manually and using Microsoft Excel. 2- To find constants from a nonlinear relation. Exercise 1 - Using Excel to plot a graph Suppose you have measured

More information

Introduction to MoLEs Activities Computer Simulations *

Introduction to MoLEs Activities Computer Simulations * Introduction to MoLEs Activities Computer Simulations * Molecular Level Experiments (MoLEs) are chemistry laboratory experiments based on computer simulations. There are two types of simulation programs

More information

Mathematics Textbook Correlation to the 2016 Algebra I Standards of Learning and Curriculum Framework

Mathematics Textbook Correlation to the 2016 Algebra I Standards of Learning and Curriculum Framework and Curriculum Framework Publisher: McGraw-Hill School Education Text: Algebra 1 Copyright date 2018 A.1 The student will a) represent verbal quantitative situations algebraically; and TE: 5-9, 23-29,

More information

Six Sigma Black Belt Study Guides

Six Sigma Black Belt Study Guides Six Sigma Black Belt Study Guides 1 www.pmtutor.org Powered by POeT Solvers Limited. Analyze Correlation and Regression Analysis 2 www.pmtutor.org Powered by POeT Solvers Limited. Variables and relationships

More information

Quantum Mechanics using Matrix Methods

Quantum Mechanics using Matrix Methods Quantum Mechanics using Matrix Methods Introduction and the simple harmonic oscillator In this notebook we study some problems in quantum mechanics using matrix methods. We know that we can solve quantum

More information

Mathematica for Rogawski's Calculus

Mathematica for Rogawski's Calculus Mathematica for Rogawski's Calculus 2nd Edition 2010 Based on Mathematica Version 7 Abdul Hassen, Gary Itzkowitz, Hieu D. Nguyen, Jay Schiffman W. H. Freeman and Company New York Copyright 2010 Table of

More information

Applied Calculus. Review Problems for the Final Exam

Applied Calculus. Review Problems for the Final Exam Math135 Study Guide 1 Math 131/135/194, Fall 2004 Applied Calculus Daniel Kaplan, Macalester College Review Problems for the Final Exam Problem 1../DE/102b.tex Problem 3../DE/107.tex Consider the pair

More information

CURRICULUM GUIDE Algebra II College-Prep Level

CURRICULUM GUIDE Algebra II College-Prep Level CURRICULUM GUIDE Algebra II College-Prep Level Revised Sept 2011 Course Description: This course builds upon the foundational concepts of Algebra I and Geometry, connects them with practical real world

More information

Students should read Sections of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section.

Students should read Sections of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section. Chapter 3 Differentiation ü 3.1 The Derivative Students should read Sections 3.1-3.5 of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section. ü 3.1.1 Slope of Tangent

More information

A First Course on Kinetics and Reaction Engineering Example 14.3

A First Course on Kinetics and Reaction Engineering Example 14.3 Example 14.3 Problem Purpose This problem illustrates differential analysis using data from a differentially operated PFR. Problem Statement The isomerization of cyclopropane, equation (1), was known from

More information

1 Introduction to Minitab

1 Introduction to Minitab 1 Introduction to Minitab Minitab is a statistical analysis software package. The software is freely available to all students and is downloadable through the Technology Tab at my.calpoly.edu. When you

More information

Boyle s Law: A Multivariable Model and Interactive Animated Simulation

Boyle s Law: A Multivariable Model and Interactive Animated Simulation Boyle s Law: A Multivariable Model and Interactive Animated Simulation Using tools available in Excel, we will turn a multivariable model into an interactive animated simulation. Projectile motion, Boyle's

More information

Introduction to ArcMap

Introduction to ArcMap Introduction to ArcMap ArcMap ArcMap is a Map-centric GUI tool used to perform map-based tasks Mapping Create maps by working geographically and interactively Display and present Export or print Publish

More information

Seymour Public Schools Curriculum

Seymour Public Schools Curriculum Algebra II continues the study of functions. Students learn operations with functions and graphing of different types of functions. Students solve equations and perform operations with exponents, matrices

More information

converges to a root, it may not always be the root you have in mind.

converges to a root, it may not always be the root you have in mind. Math 1206 Calculus Sec. 4.9: Newton s Method I. Introduction For linear and quadratic equations there are simple formulas for solving for the roots. For third- and fourth-degree equations there are also

More information

A First Course on Kinetics and Reaction Engineering Example 15.2

A First Course on Kinetics and Reaction Engineering Example 15.2 Example 15.2 Problem Purpose This example illustrates the use of the integral method of data analysis with a rate expression that depends on the concentrations of more than one species. Problem Statement

More information

Lab #10 Atomic Radius Rubric o Missing 1 out of 4 o Missing 2 out of 4 o Missing 3 out of 4

Lab #10 Atomic Radius Rubric o Missing 1 out of 4 o Missing 2 out of 4 o Missing 3 out of 4 Name: Date: Chemistry ~ Ms. Hart Class: Anions or Cations 4.7 Relationships Among Elements Lab #10 Background Information The periodic table is a wonderful source of information about all of the elements

More information

Hit the brakes, Charles!

Hit the brakes, Charles! Hit the brakes, Charles! Teacher Notes/Answer Sheet 7 8 9 10 11 12 TI-Nspire Investigation Teacher 60 min Introduction Hit the brakes, Charles! bivariate data including x 2 data transformation. As soon

More information

Linear Motion with Constant Acceleration

Linear Motion with Constant Acceleration Linear Motion 1 Linear Motion with Constant Acceleration Overview: First you will attempt to walk backward with a constant acceleration, monitoring your motion with the ultrasonic motion detector. Then

More information

EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE (V_3)

EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE (V_3) TA name Lab section Date TA Initials (on completion) Name UW Student ID # Lab Partner(s) EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE (V_3) 121 Textbook Reference: Knight, Chapter 13.1-3, 6. SYNOPSIS In

More information

Photosynthesis and Respiration. Evaluation copy

Photosynthesis and Respiration. Evaluation copy Photosynthesis and Respiration Computer 12C Plants make sugar, storing the energy of the sun into chemical energy, by the process of photosynthesis. When they require energy, they can tap the stored energy

More information

Nonlinear Regression. Summary. Sample StatFolio: nonlinear reg.sgp

Nonlinear Regression. Summary. Sample StatFolio: nonlinear reg.sgp Nonlinear Regression Summary... 1 Analysis Summary... 4 Plot of Fitted Model... 6 Response Surface Plots... 7 Analysis Options... 10 Reports... 11 Correlation Matrix... 12 Observed versus Predicted...

More information

Practice Midterm Exam 1 March, 2011

Practice Midterm Exam 1 March, 2011 NAME: MSE 508: Solid State Thermodynamics Department of Materials Science & Engineering Boise State University Spring 2011 Practice Midterm Exam 1 March, 2011 Problem Total Points Points Obtained 1. 2.

More information

MS Algebra 1 Scope and Sequence Quarter 1 Overview

MS Algebra 1 Scope and Sequence Quarter 1 Overview Quarter 1 Overview Equations, Inequalities, Absolute Value Students must master creating, solving, and In 7 th grade, students will have developed a Write, solve, and interpret multi-step equations analyzing

More information

Reteach 2-3. Graphing Linear Functions. 22 Holt Algebra 2. Name Date Class

Reteach 2-3. Graphing Linear Functions. 22 Holt Algebra 2. Name Date Class -3 Graphing Linear Functions Use intercepts to sketch the graph of the function 3x 6y 1. The x-intercept is where the graph crosses the x-axis. To find the x-intercept, set y 0 and solve for x. 3x 6y 1

More information

Prentice Hall Algebra 1, Oklahoma Edition 2011

Prentice Hall Algebra 1, Oklahoma Edition 2011 Prentice Hall Algebra 1, Oklahoma Edition 2011 Algebra I C O R R E L A T E D T O, Algebra I (Updated August 2006) PROCESS STANDARDS High School The National Council of Teachers of Mathematics (NCTM) has

More information

1 A Review of Correlation and Regression

1 A Review of Correlation and Regression 1 A Review of Correlation and Regression SW, Chapter 12 Suppose we select n = 10 persons from the population of college seniors who plan to take the MCAT exam. Each takes the test, is coached, and then

More information

Algebra II Notes Quadratic Functions Unit Applying Quadratic Functions. Math Background

Algebra II Notes Quadratic Functions Unit Applying Quadratic Functions. Math Background Applying Quadratic Functions Math Background Previously, you Graphed and solved quadratic functions. Solved literal equations for a given variable. Found the inverse for a linear function. Verified by

More information

Math 253 Homework due Wednesday, March 9 SOLUTIONS

Math 253 Homework due Wednesday, March 9 SOLUTIONS Math 53 Homework due Wednesday, March 9 SOLUTIONS 1. Do Section 8.8, problems 11,, 15, 17 (these problems have to do with Taylor s Inequality, and they are very similar to what we did on the last homework.

More information

Saltwater Conductivity: Trends of the Periodic Table

Saltwater Conductivity: Trends of the Periodic Table Saltwater Conductivity: Trends of the Periodic Table by Kirk and Jennifer Pepper Louisiana Curriculum Framework Content Strand: Physical Science, Science as Inquiry Grade Level 9-12 Objectives: The students

More information

STATE UNIVERSITY OF NEW YORK COLLEGE OF TECHNOLOGY CANTON, NEW YORK COURSE OUTLINE MATH INTERMEDIATE ALGEBRA

STATE UNIVERSITY OF NEW YORK COLLEGE OF TECHNOLOGY CANTON, NEW YORK COURSE OUTLINE MATH INTERMEDIATE ALGEBRA STATE UNIVERSITY OF NEW YORK COLLEGE OF TECHNOLOGY CANTON, NEW YORK COURSE OUTLINE MATH 106 - INTERMEDIATE ALGEBRA Prepared By: Jesse Clark-Stone and Jonathan Thompson CANINO SCHOOL OF ENGINEERING TECHNOLOGY

More information

4:3 LEC - PLANNED COMPARISONS AND REGRESSION ANALYSES

4:3 LEC - PLANNED COMPARISONS AND REGRESSION ANALYSES 4:3 LEC - PLANNED COMPARISONS AND REGRESSION ANALYSES FOR SINGLE FACTOR BETWEEN-S DESIGNS Planned or A Priori Comparisons We previously showed various ways to test all possible pairwise comparisons for

More information

Photosynthesis and Respiration

Photosynthesis and Respiration Computer 31C Plants make sugar, storing the energy of the sun into chemical energy, by the process of photosynthesis. When they require energy, they can tap the stored energy in sugar by a process called

More information

Algebra I Assessment. Eligible Texas Essential Knowledge and Skills

Algebra I Assessment. Eligible Texas Essential Knowledge and Skills Algebra I Assessment Eligible Texas Essential Knowledge and Skills STAAR Algebra I Assessment Reporting Category 1: Functional Relationships The student will describe functional relationships in a variety

More information

Utah Core State Standards for Mathematics Secondary Mathematics I

Utah Core State Standards for Mathematics Secondary Mathematics I A Correlation of Integrated Math I Common Core 2014 to the Utah Core State for Mathematics Secondary Resource Title: : Common Core Publisher: Pearson Education publishing as Prentice Hall ISBN (10 or 13

More information

Instructional Calendar Accelerated Integrated Precalculus. Chapter 1 Sections and 1.6. Section 1.4. Section 1.5

Instructional Calendar Accelerated Integrated Precalculus. Chapter 1 Sections and 1.6. Section 1.4. Section 1.5 1 st Semester 32. Compare and contrast properties of functions within and across a variety of functions. -Tabular, Graphical, and Algebraic Representations of Functions -Domain and Range of Functions -Increasing,

More information

Chapter 2. Review of Mathematics. 2.1 Exponents

Chapter 2. Review of Mathematics. 2.1 Exponents Chapter 2 Review of Mathematics In this chapter, we will briefly review some of the mathematical concepts used in this textbook. Knowing these concepts will make it much easier to understand the mathematical

More information

An area chart emphasizes the trend of each value over time. An area chart also shows the relationship of parts to a whole.

An area chart emphasizes the trend of each value over time. An area chart also shows the relationship of parts to a whole. Excel 2003 Creating a Chart Introduction Page 1 By the end of this lesson, learners should be able to: Identify the parts of a chart Identify different types of charts Create an Embedded Chart Create a

More information

ASSIGNMENT 3 SIMPLE LINEAR REGRESSION. Old Faithful

ASSIGNMENT 3 SIMPLE LINEAR REGRESSION. Old Faithful ASSIGNMENT 3 SIMPLE LINEAR REGRESSION In the simple linear regression model, the mean of a response variable is a linear function of an explanatory variable. The model and associated inferential tools

More information

Sample Mathematica code for the paper "Modeling a Diving Board"

Sample Mathematica code for the paper Modeling a Diving Board Sample Mathematica code for the paper "Modeling a Diving Board" Michael A. Karls and Brenda M. Skoczelas, Department of Mathematical Sciences, Ball State University, Muncie, IN 47306 Beam Data Original

More information

Determining the Conductivity of Standard Solutions

Determining the Conductivity of Standard Solutions Determining the Conductivity of Standard Solutions by Anna Cole and Shannon Clement Louisiana Curriculum Framework Content Strand: Science as Inquiry, Physical Science Grade Level 11-12 Objectives: 1.

More information

TIphysics.com. Physics. Bell Ringer: Determining the Relationship Between Displacement, Velocity, and Acceleration ID: 13308

TIphysics.com. Physics. Bell Ringer: Determining the Relationship Between Displacement, Velocity, and Acceleration ID: 13308 Bell Ringer: Determining the Relationship Between Displacement, Velocity, and Acceleration ID: 13308 Time required 15 minutes Topic: Kinematics Construct and interpret graphs of displacement, velocity,

More information

PHYSICS LAB. Newton's Law. Date: GRADE: PHYSICS DEPARTMENT JAMES MADISON UNIVERSITY

PHYSICS LAB. Newton's Law. Date: GRADE: PHYSICS DEPARTMENT JAMES MADISON UNIVERSITY PHYSICS LAB Newton's Law Printed Names: Signatures: Date: Lab Section: Instructor: GRADE: PHYSICS DEPARTMENT JAMES MADISON UNIVERSITY Revision August 2003 NEWTON S SECOND LAW Purpose: 1. To become familiar

More information

Your work from these three exercises will be due Thursday, March 2 at class time.

Your work from these three exercises will be due Thursday, March 2 at class time. GEO231_week5_2012 GEO231, February 23, 2012 Today s class will consist of three separate parts: 1) Introduction to working with a compass 2) Continued work with spreadsheets 3) Introduction to surfer software

More information

East Penn School District Secondary Curriculum

East Penn School District Secondary Curriculum East Penn School District Secondary Curriculum A Planned Course Statement for CACS (C.P.) Course # 340 Grade(s) 11, 12 Department: MATHEMATICS ength of Period (mins.) 42 Total Clock Hours: 126 Periods

More information

Calculus I with Pre-Calculus. Algebra II or Pre-Calculus.

Calculus I with Pre-Calculus. Algebra II or Pre-Calculus. Course Title: Head of Department: Calculus I with Pre-Calculus. Bassam Raychouni (bassam@greenwood.sh.ae) Teacher(s) + e-mail: Bassam Raychouni (bassam@greenwood.sch.ae) Cycle/Division: High School Grade

More information

H. Diagnostic plots of residuals

H. Diagnostic plots of residuals H. Diagnostic plots of residuals 1. Plot residuals versus fitted values almost always a. or simple reg. this is about the same as residuals vs. x b. Look for outliers, curvature, increasing spread (funnel

More information

Dept. of Materials Science and Engineering. Electrical Properties Of Materials

Dept. of Materials Science and Engineering. Electrical Properties Of Materials Problem Set 12 Solutions See handout "Part 4: Heterojunctions MOS Devices" (slides 9-18) Using the Boise State Energy Band Diagram program, build the following structure: Gate material: 5nm p + -Poly Si

More information

Correlation with College Board Advanced Placement Course Descriptions

Correlation with College Board Advanced Placement Course Descriptions Correlation with College Board Advanced Placement Course Descriptions The following tables show which sections of Calculus: Concepts and Applications cover each of the topics listed in the 2004 2005 Course

More information

Introduction to Uncertainty and Treatment of Data

Introduction to Uncertainty and Treatment of Data Introduction to Uncertainty and Treatment of Data Introduction The purpose of this experiment is to familiarize the student with some of the instruments used in making measurements in the physics laboratory,

More information

Investigating Weather and Climate with Google Earth Teacher Guide

Investigating Weather and Climate with Google Earth Teacher Guide Google Earth Weather and Climate Teacher Guide In this activity, students will use Google Earth to explore global temperature changes. They will: 1. Use Google Earth to determine how the temperature of

More information

I. Pre-Lab Introduction

I. Pre-Lab Introduction I. Pre-Lab Introduction Please complete the following pages before the lab by filling in the requested items. A. Atomic notation: Atoms are composed of a nucleus containing neutrons and protons surrounded

More information

TEACHER NOTES SCIENCE NSPIRED

TEACHER NOTES SCIENCE NSPIRED Science Objectives Students will explore the force two charges exert on each other. Students will observe how the force depends upon the magnitude of the two charges and the distance separating them. Students

More information

Student Guide: Chapter 1

Student Guide: Chapter 1 Student Guide: Chapter 1 1.1 1.1.1 I can solve puzzles in teams 1-4 to 1-8 1.1 1.1.2 1.1 1.1.3 I can investigate the growth of patterns 1-13 to 1-17 1-18 to 1-22 I can investigate the graphs of quadratic

More information

Reactor Design within Excel Enabled by Rigorous Physical Properties and an Advanced Numerical Computation Package

Reactor Design within Excel Enabled by Rigorous Physical Properties and an Advanced Numerical Computation Package Reactor Design within Excel Enabled by Rigorous Physical Properties and an Advanced Numerical Computation Package Mordechai Shacham Department of Chemical Engineering Ben Gurion University of the Negev

More information

EDF 7405 Advanced Quantitative Methods in Educational Research MULTR.SAS

EDF 7405 Advanced Quantitative Methods in Educational Research MULTR.SAS EDF 7405 Advanced Quantitative Methods in Educational Research MULTR.SAS The data used in this example describe teacher and student behavior in 8 classrooms. The variables are: Y percentage of interventions

More information

Mathematica Project 3

Mathematica Project 3 Mathematica Project 3 Name: Section: Date: On your class s Sakai site, your instructor has placed 5 Mathematica notebooks. Please use the following table to determine which file you should select based

More information

Trinity Christian School Curriculum Guide

Trinity Christian School Curriculum Guide Course Title: Calculus Grade Taught: Twelfth Grade Credits: 1 credit Trinity Christian School Curriculum Guide A. Course Goals: 1. To provide students with a familiarity with the properties of linear,

More information

EXCELLING WITH BIOLOGICAL MODELS FROM THE CLASSROOM T0 RESEARCH

EXCELLING WITH BIOLOGICAL MODELS FROM THE CLASSROOM T0 RESEARCH EXCELLING WITH BIOLOGICAL MODELS FROM THE CLASSROOM T0 RESEARCH Timothy D. Comar Benedictine University Department of Mathematics 5700 College Road Lisle, IL 60532 tcomar@ben.edu Introduction Computer

More information

Investigation of Tangent Polynomials with a Computer Algebra System The AMATYC Review, Vol. 14, No. 1, Fall 1992, pp

Investigation of Tangent Polynomials with a Computer Algebra System The AMATYC Review, Vol. 14, No. 1, Fall 1992, pp Investigation of Tangent Polynomials wit a Computer Algebra System Te AMATYC Review, Vol. 14, No. 1, Fall 199, pp. -7. Jon H. Matews California State University Fullerton Fullerton, CA 9834 By Russell

More information

2: SIMPLE HARMONIC MOTION

2: SIMPLE HARMONIC MOTION 2: SIMPLE HARMONIC MOTION Motion of a mass hanging from a spring If you hang a mass from a spring, stretch it slightly, and let go, the mass will go up and down over and over again. That is, you will get

More information

Green s Functions with Reflection

Green s Functions with Reflection Green s Functions with Reflection User s manual Alberto Cabada Fernández (USC) José Ángel Cid Araújo (UVIGO) Fernando Adrián Fernández Tojo (USC) Beatriz Máquez Villamarín (USC) Universidade de Santiago

More information

Chapte The McGraw-Hill Companies, Inc. All rights reserved.

Chapte The McGraw-Hill Companies, Inc. All rights reserved. 12er12 Chapte Bivariate i Regression (Part 1) Bivariate Regression Visual Displays Begin the analysis of bivariate data (i.e., two variables) with a scatter plot. A scatter plot - displays each observed

More information

Soc 63993, Homework #7 Answer Key: Nonlinear effects/ Intro to path analysis

Soc 63993, Homework #7 Answer Key: Nonlinear effects/ Intro to path analysis Soc 63993, Homework #7 Answer Key: Nonlinear effects/ Intro to path analysis Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised February 20, 2015 Problem 1. The files

More information

Module 2A Turning Multivariable Models into Interactive Animated Simulations

Module 2A Turning Multivariable Models into Interactive Animated Simulations Module 2A Turning Multivariable Models into Interactive Animated Simulations Using tools available in Excel, we will turn a multivariable model into an interactive animated simulation. Projectile motion,

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

Ratio of Polynomials Fit One Variable

Ratio of Polynomials Fit One Variable Chapter 375 Ratio of Polynomials Fit One Variable Introduction This program fits a model that is the ratio of two polynomials of up to fifth order. Examples of this type of model are: and Y = A0 + A1 X

More information

Calculus I Practice Test Problems for Chapter 2 Page 1 of 7

Calculus I Practice Test Problems for Chapter 2 Page 1 of 7 Calculus I Practice Test Problems for Chapter Page of 7 This is a set of practice test problems for Chapter This is in no way an inclusive set of problems there can be other types of problems on the actual

More information

Package RootsExtremaInflections

Package RootsExtremaInflections Type Package Package RootsExtremaInflections May 10, 2017 Title Finds Roots, Extrema and Inflection Points of a Curve Version 1.1 Date 2017-05-10 Author Demetris T. Christopoulos Maintainer Demetris T.

More information

MAT 17A - UHP - DISCUSSION #10 December 1, 2015

MAT 17A - UHP - DISCUSSION #10 December 1, 2015 MAT 17A - UHP - DISCUSSION #10 December 1, 2015 PROBLEM 1. Linear recursion equations Consider the linear recursion (finite difference) equation x j+1 = L x j = a x j + b, x 0 (1), where a and b are: (i)

More information

Computer simulation of radioactive decay

Computer simulation of radioactive decay Computer simulation of radioactive decay y now you should have worked your way through the introduction to Maple, as well as the introduction to data analysis using Excel Now we will explore radioactive

More information

Northwood High School Algebra 2/Honors Algebra 2 Summer Review Packet

Northwood High School Algebra 2/Honors Algebra 2 Summer Review Packet Northwood High School Algebra 2/Honors Algebra 2 Summer Review Packet This assignment should serve as a review of the Algebra 1 skills necessary for success. Our hope is that this review will keep your

More information

Adlai E. Stevenson High School Course Description

Adlai E. Stevenson High School Course Description Adlai E. Stevenson High School Course Description Division: Course Number: Course Title: Special Education/Mathematics MTH0N1/MTH0N2 Instructional Algebra Enriched Course Description: Algebra Enriched

More information

The EpH module. Table of Contents. Section 3

The EpH module. Table of Contents. Section 3 The module Use to calculate and plot isothermal (Pourbaix) diagrams. Note: accesses compound databases, i.e. treats the aqueous phase as an ideal solution. Table of Contents Section 1 Section 2 Section

More information

CURRICULUM CATALOG. Algebra I (3130) VA

CURRICULUM CATALOG. Algebra I (3130) VA 2018-19 CURRICULUM CATALOG Table of Contents COURSE OVERVIEW... 1 UNIT 1: FOUNDATIONS OF ALGEBRA... 1 UNIT 2: LINEAR EQUATIONS... 2 UNIT 3: FUNCTIONS... 2 UNIT 4: INEQUALITIES AND LINEAR SYSTEMS... 2 UNIT

More information

Assignment 1: Molecular Mechanics (PART 1 25 points)

Assignment 1: Molecular Mechanics (PART 1 25 points) Chemistry 380.37 Fall 2015 Dr. Jean M. Standard August 19, 2015 Assignment 1: Molecular Mechanics (PART 1 25 points) In this assignment, you will perform some molecular mechanics calculations using the

More information

Chapter 3 Engineering Solutions. 3.4 and 3.5 Problem Presentation

Chapter 3 Engineering Solutions. 3.4 and 3.5 Problem Presentation Chapter 3 Engineering Solutions 3.4 and 3.5 Problem Presentation Organize your work as follows (see book): Problem Statement Theory and Assumptions Solution Verification Tools: Pencil and Paper See Fig.

More information

Project 2 by Kayli-Anna Barriteau

Project 2 by Kayli-Anna Barriteau Project 2 by Kayli-Anna Barriteau Decay of quinine in a malaria patient Data for the decay of a mg dose of quinine in a patient suffering from malaria is given in Mathematica format below. The first number

More information

Student Study Session Topic: Table Problems

Student Study Session Topic: Table Problems Student Notes Student Study Session Topic: Table Problems The AP Calculus exams include multiple choice and free response questions in which the stem of the question includes a table of numerical information

More information

Graphical Analysis and Errors MBL

Graphical Analysis and Errors MBL Graphical Analysis and Errors MBL I Graphical Analysis Graphs are vital tools for analyzing and displaying data Graphs allow us to explore the relationship between two quantities -- an independent variable

More information

Bilinear Transformations via a Computer Algebra System

Bilinear Transformations via a Computer Algebra System Bilinear Transformations via a Computer Algebra System Tilak de Alwis talwis@selu.edu Department of Mathematics Southeastern Louisiana University Hammond, LA 70403 USA Abstract: In this paper, we will

More information

Common Course Numbers, Titles, Rationale, Content

Common Course Numbers, Titles, Rationale, Content Common Course Numbers, Titles, Rationale, Content Document last updated on 09/12/2014. PLEASE report any additions, deletions, or other changes to your college s Math Issues representative. Course Number

More information

Remember that C is a constant and ë and n are variables. This equation now fits the template of a straight line:

Remember that C is a constant and ë and n are variables. This equation now fits the template of a straight line: CONVERTING NON-LINEAR GRAPHS INTO LINEAR GRAPHS Linear graphs have several important attributes. First, it is easy to recognize a graph that is linear. It is much more difficult to identify if a curved

More information

Introduction to Computer Tools and Uncertainties

Introduction to Computer Tools and Uncertainties Experiment 1 Introduction to Computer Tools and Uncertainties 1.1 Objectives To become familiar with the computer programs and utilities that will be used throughout the semester. To become familiar with

More information

Prentice Hall Calculus: Graphical, Numerical, and Algebraic AP* Student Edition 2007

Prentice Hall Calculus: Graphical, Numerical, and Algebraic AP* Student Edition 2007 Prentice Hall Calculus: Graphical, Numerical, and Algebraic AP* Student Edition 2007 C O R R E L A T E D T O AP Calculus AB Standards I Functions, Graphs, and Limits Analysis of graphs. With the aid of

More information

Static and Kinetic Friction

Static and Kinetic Friction Experiment 12 If you try to slide a heavy box resting on the floor, you may find it difficult to get the box moving. Static friction is the force that is acting against the box. If you apply a light horizontal

More information

Linear Regression. Linear Regression. Linear Regression. Did You Mean Association Or Correlation?

Linear Regression. Linear Regression. Linear Regression. Did You Mean Association Or Correlation? Did You Mean Association Or Correlation? AP Statistics Chapter 8 Be careful not to use the word correlation when you really mean association. Often times people will incorrectly use the word correlation

More information

Physicist's Introduction to Mathematica

Physicist's Introduction to Mathematica Physicist's Introduction to Mathematica Physics 200 Physics 50 Lab Revised for V6.0 Fall Semester 2000 Spring Semester 2006 Summer 2007 Nicholas Wheeler John Boccio John Boccio REED COLLEGE Swarthmore

More information