ENED 1090: Engineering Models I Homework Assignment #3 Due: Week of September 23 rd at the beginning of your Recitation Section

Size: px
Start display at page:

Download "ENED 1090: Engineering Models I Homework Assignment #3 Due: Week of September 23 rd at the beginning of your Recitation Section"

Transcription

1 ENED 1090: Engineering Models I Homework Assignment #3 Due: Week of September 23 rd at the beginning of your Recitation Section Instructions: 1. In addition to this HW3 document, you will also need the two excel files posted with HW3: ProjectileData.xlsx and HydrogenPeroxide.xlsx. Put both of this files in your current MATLAB directory. 2. Show your work! Make sure you include MATLAB commands. 3. It is fine to work with other students, but what you turn in must be your own work - not something copied from someone else. 4. Submit an electronic copy of your work to your individual section of Blackboard go to the Assignments Folder and look for Homework #3. Problem 1: Curve Fitting Trajectory of Projectile The excel file, ProjectileData, has three columns of data: time, distance, and height. Import each of these columns into MATLAB using either xlsread or the Import Data tool. The variable distance represents measurements of the x-position (horizontal position) of the projectile over time and the variable height represents measurements of the y-position (vertical position) of the projectile over time. The equations for the x and y position of a projectile launched at an angle of θ (rad or degrees) with an initial velocity of V0 (m/s) are: (a) Plot time on the x-axis and distance on the y-axis. Add axis labels (with units) and a title to your plot. We know that the x-position of the projectile increases linearly with time. So use the curve fitting tool to fit a 1 st order polynomial (line) to the height data. Display the equation for the fitted polynomial on your graph with 5 digits behind the decimal point. Then copy and paste your plot in the space below. data=xlsread( ProjectileData.xlsx','A2:C52'); time=data(:,1); distance=data(:,2); height=data(:,3); plot(time,distance); poly1st=polyfit(time,distance,1); xlabel( time ); ylabel('distance'); title('time vs Distance'); MATLAB PLOT:

2 (b) Plot time on the x-axis and height on the y-axis. Add axis labels (with units) and a title to your plot. We know the height of the projectile follows a parabolic (2 nd order) curve. So use the curve fitting tool to fit a 2 nd order polynomial (quadratic) to the height data. Display the equation for the fitted polynomial on your graph with 5 digits behind the decimal point. Then copy and paste your plot in the space below. data=xlsread( ProjectileData.xlsx','A2:C52'); time=data(:,1); distance=data(:,2); height=data(:,3); plot(time,height); poly2nd=polyfit(time,height,1); xlabel( time'); ylabel('height'); title('time vs Height');

3 MATLAB PLOT: (c) Look at the numerical coefficient for the squared term in the fitted polynomial for the height data. Theoretically, this coefficient should be equal to -1/2*g. How close is it? Calculate a percent error using the following formula using -1/2*g as actual: Show Calculations: % Error = ((-) (-)4.9)/(-)4.9= -.008%

4 (d) The numerical coefficient for the linear term in the fitted polynomial for height should be approximately V0 sin(θ) and the numerical coefficient for the linear term in the fitted polynomial for distance should be approximately V0 cos(θ). Enter the values below then solve for the initial velocity, V0, and the launch angle, θ. V0 sin(θ) = V0 cos(θ) = θ = degrees (include units) V0 =.625 m/s (include units) Show Calculations: (sin/cos)=(28.025/28.233) tan^-1=.9926 = degrees /44.788=.625 m/s Problem 2: Curve Fitting Decomposition of Hydrogen Peroxide Estimating Reaction Rates from Experimental Data First order chemical reactions can be modeled using exponential functions. Hydrogen Peroxide (H2O2) decomposes as a 1 st order reaction into water and oxygen gas: " The concentration of hydrogen peroxide decreases exponentially according to the following equation: C(t) = Concentration at time t (M or mols/l) C0 = Initial Concentration (M) k = Reaction rate (s -1 ) In lab, we investigated the decomposition of hydrogen peroxide in air which was a very slow reaction. It decomposes much, much faster in the presence of a catalyst such as Iodide (I - ). The HydrogenPeroxide.xlsx file has the results of five experiments measuring the concentration of hydrogen peroxide using an Iodide catalyst at 5 different temperatures. We will use curve fitting to estimate the reaction rate, k, for each of these five temperatures. If we take the natural log of the concentration equation, we have:

5 For each of the five temperatures, plot time on the x-axis and ln(c(t)) on the y-axis. Create five separate plots. Remember, in MATLAB ln(c) is log(c)! Next use the curve fitting tool to fit a line to the data. Display the curve fit equation with 5 places behind the decimal point. The slope of the line should be roughly equal to k as long as the measurements are good. Enter your estimated reaction rate values in the table below. Include your plots in the space indicated (make sure they are labeled appropriately) and the MATLAB commands used to generate one of the five plots. Absolute Temperature (K) Estimated Reaction Rate, k (s -1 ) MATLAB COMMANDS TO GENERATE ONE OF THE PLOTS: %Homework 3-Decomposition of Hydrogen Peroxide; %Alex Sullivan- October 28, 2016; %c(t)= Concentration at time t (M or mols/l); %co=intiial Concentration;%k=Reaction Rate; %c(t)=co.*e.^(k.*t) data=xlsread( HydrogenPeroxide.xlsx','A2:F39'); t=0:.05:1.8; c280=data(:,2); c285=data(:,3); c290=data(:,4); c295=data(:,5); c300=data(:,6); lnc1=log(c280); lnc2=log(c285); lnc3=log(c290); lnc4=log(c295); lnc5=log(c300); %ln(c(t))=-k.*t+ln(co); plot(t,lnc1,t,lnc2,t,lnc3,t,lnc4,t,lnc5); title('concentration of Hydrogen Peroxide'); xlabel( time'); ylabel('ln(c(t))'); legend('280k','285k','290k','295k','300k'); FIVE MATLAB PLOTS SHOWING CURVE FIT:

6 Problem 3: Curve Fitting Decomposition of Hydrogen Peroxide Estimating Activation Energy from Experimental Data The reaction rate, k, depends on the temperature according to Arrhenius Equation (also exponential): We will again apply the very nice trick of taking the natural log of this equation which gives: "

7 Using your five values from the previous problem, plot 1/T on the x-axis and ln(k) on the y-axis. Again, do a linear curve fit. Using the fact that the slope of your line should be approximately Ea/R, determine a value for the activation energy, Ea, for the decomposition of hydrogen peroxide in the presence of an Iodide catalyst. MATLAB COMMANDS: %Homework 3 Decomposition of Hydrogen Peroxide %Estimating Activation Energy from Experimental Data %k=a.*e.^(-e/(r.*t)) data=xlsread('hydrogenperoxide.xlsx','a2:f39'); T=[1/280 1/285 1/290 1/295 1/300]; K=[ ]; plot(t,log(k)); xlabel('1/t');ylabel('ln(k)'); title('estimating Activation Energy'); MATLAB PLOT:

8 Ea = 56,013.9 J/m (include units)

ENED 1091 HW#3 Due Week of February 22 nd

ENED 1091 HW#3 Due Week of February 22 nd ENED 1091 HW#3 Due Week of February 22 nd Problem 1: The graph below shows position measurements (in cm) collected every 0.5 seconds over a 10 second interval of time. (a) Using linear interpolation, estimate

More information

Richter Scale and Logarithms

Richter Scale and Logarithms activity 7.1 Richter Scale and Logarithms In this activity, you will investigate earthquake data and explore the Richter scale as a measure of the intensity of an earthquake. You will consider how numbers

More information

Complex Numbers. James K. Peterson. September 19, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Complex Numbers. James K. Peterson. September 19, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Complex Numbers James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 19, 2013 Outline 1 Complex Numbers 2 Complex Number Calculations

More information

Complex Numbers. Outline. James K. Peterson. September 19, Complex Numbers. Complex Number Calculations. Complex Functions

Complex Numbers. Outline. James K. Peterson. September 19, Complex Numbers. Complex Number Calculations. Complex Functions Complex Numbers James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 19, 2013 Outline Complex Numbers Complex Number Calculations Complex

More information

Summer Packet Geometry PAP

Summer Packet Geometry PAP Summer Packet Geometry PAP IMPORTANT INSTRUCTIONS FOR STUDENTS!!! We understand that students come to Geometry with different strengths and needs. For this reason, students have options for completing

More information

Calculus First Semester Review Name: Section: Evaluate the function: (g o f )( 2) f (x + h) f (x) h. m(x + h) m(x)

Calculus First Semester Review Name: Section: Evaluate the function: (g o f )( 2) f (x + h) f (x) h. m(x + h) m(x) Evaluate the function: c. (g o f )(x + 2) d. ( f ( f (x)) 1. f x = 4x! 2 a. f( 2) b. f(x 1) c. f (x + h) f (x) h 4. g x = 3x! + 1 Find g!! (x) 5. p x = 4x! + 2 Find p!! (x) 2. m x = 3x! + 2x 1 m(x + h)

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

The Decomposition of Hydrogen Peroxide. Evaluation copy

The Decomposition of Hydrogen Peroxide. Evaluation copy The Decomposition of Hydrogen Peroxide Computer 12 The decomposition of hydrogen peroxide in aqueous solution proceeds very slowly. A bottle of 3% hydrogen peroxide sitting on a grocery store shelf is

More information

NUMB3RS Activity: Clearing All Obstacles. Episode: Hot Shot

NUMB3RS Activity: Clearing All Obstacles. Episode: Hot Shot Page 1 NUMB3RS Activity: Clearing All Obstacles Topic: Parabolic Equations Grade Level: 10-1 Objective: Students will use the TI-Navigator TM system to explore changes of projectile motion due to initial

More information

Lab 8: Magnetic Fields

Lab 8: Magnetic Fields Lab 8: Magnetic Fields Name: Group Members: Date: TA s Name: Objectives: To measure and understand the magnetic field of a bar magnet. To measure and understand the magnetic field of an electromagnet,

More information

1 /30. APPM 1235 Final Exam Fall 2014 December 17, /30 3 /25

1 /30. APPM 1235 Final Exam Fall 2014 December 17, /30 3 /25 Name Section # Page Score 1 /30 APPM 1235 Final Exam Fall 2014 December 17, 2014 AT THE TOP OF THE PAGE write your name and your section number. Textbooks, class notes and electronic devices of any kind

More information

Modeling the Motion of a Projectile in Air

Modeling the Motion of a Projectile in Air In this lab, you will do the following: Modeling the Motion of a Projectile in Air analyze the motion of an object fired from a cannon using two different fundamental physics principles: the momentum principle

More information

Homework 1 Solutions

Homework 1 Solutions 18-9 Signals and Systems Profs. Byron Yu and Pulkit Grover Fall 18 Homework 1 Solutions Part One 1. (8 points) Consider the DT signal given by the algorithm: x[] = 1 x[1] = x[n] = x[n 1] x[n ] (a) Plot

More information

MODULE Catalysis, Chemical Reactions, and Nanoparticles-An Instructional Module

MODULE Catalysis, Chemical Reactions, and Nanoparticles-An Instructional Module MODULE Catalysis, Chemical Reactions, and Nanoparticles-An Instructional Module MODULE TOPIC: Catalysis, Chemical Reactions, and Nanoparticles RATIONALE: This module is developed to incorporate my summer

More information

Representations of Motion in One Dimension: Speeding up and slowing down with constant acceleration

Representations of Motion in One Dimension: Speeding up and slowing down with constant acceleration Representations of Motion in One Dimension: Speeding up and slowing down with constant acceleration Name: Group Members: Date: TA s Name: Apparatus: Aluminum track and supports, PASCO Smart Cart, two cart

More information

A Cubic Regression Group Activity 4 STEM Project Week #7

A Cubic Regression Group Activity 4 STEM Project Week #7 A Cubic Regression Group Activity 4 STEM Project Week #7 In the first activity we looked at a set of data that was modeled by a line (a linear regression). In the second and third activities we looked

More information

Partial Fractions. June 27, In this section, we will learn to integrate another class of functions: the rational functions.

Partial Fractions. June 27, In this section, we will learn to integrate another class of functions: the rational functions. Partial Fractions June 7, 04 In this section, we will learn to integrate another class of functions: the rational functions. Definition. A rational function is a fraction of two polynomials. For example,

More information

Lab 6A: Application of Coulomb s Law, With Vernier Video Simulation

Lab 6A: Application of Coulomb s Law, With Vernier Video Simulation ab 6A: Application of Coulomb s aw, With Vernier Video Simulation Physics 204, Daniel Yaverbaum John Jay College of Criminal Justice, the CUNY *** NOTE: Every Triple-Starred Direction (***) is a direction

More information

Lab #8: The Unbalanced Wheel

Lab #8: The Unbalanced Wheel Lab #8: The Unbalanced Wheel OBJECTIVE Use observations to calculate the radius of gyration of a wheel. Apply energy models to the dynamics of an unbalanced rotating wheel. Learn new computing skills.

More information

3.2 Projectile Motion

3.2 Projectile Motion Motion in 2-D: Last class we were analyzing the distance in two-dimensional motion and revisited the concept of vectors, and unit-vector notation. We had our receiver run up the field then slant Northwest.

More information

Summer Assignment MAT 414: Calculus

Summer Assignment MAT 414: Calculus Summer Assignment MAT 414: Calculus Calculus - Math 414 Summer Assignment Due first day of school in September Name: 1. If f ( x) = x + 1, g( x) = 3x 5 and h( x) A. f ( a+ ) x+ 1, x 1 = then find: x+ 7,

More information

Motion in Two Dimensions: Centripetal Acceleration

Motion in Two Dimensions: Centripetal Acceleration Motion in Two Dimensions: Centripetal Acceleration Name: Group Members: Date: TA s Name: Apparatus: Rotating platform, long string, liquid accelerometer, meter stick, masking tape, stopwatch Objectives:

More information

Summer Packet A Math Refresher For Students Entering IB Mathematics SL

Summer Packet A Math Refresher For Students Entering IB Mathematics SL Summer Packet A Math Refresher For Students Entering IB Mathematics SL Name: PRECALCULUS SUMMER PACKET Directions: This packet is required if you are registered for Precalculus for the upcoming school

More information

Changes in Energy and Momentum

Changes in Energy and Momentum Changes in Energy and Momentum Name: Group Members: Date: TA s Name: Learning Objectives: 1. Understanding the relationship between force, distance and changes in kinetic energy. 2. Understanding the relationship

More information

Things to Know and Be Able to Do Understand the meaning of equations given in parametric and polar forms, and develop a sketch of the appropriate

Things to Know and Be Able to Do Understand the meaning of equations given in parametric and polar forms, and develop a sketch of the appropriate AP Calculus BC Review Chapter (Parametric Equations and Polar Coordinates) Things to Know and Be Able to Do Understand the meaning of equations given in parametric and polar forms, and develop a sketch

More information

Lab 10: DC RC circuits

Lab 10: DC RC circuits Name: Lab 10: DC RC circuits Group Members: Date: TA s Name: Objectives: 1. To understand current and voltage characteristics of a DC RC circuit 2. To understand the effect of the RC time constant Apparatus:

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

Problem Weight Total 100

Problem Weight Total 100 EE 350 Problem Set 3 Cover Sheet Fall 2016 Last Name (Print): First Name (Print): ID number (Last 4 digits): Section: Submission deadlines: Turn in the written solutions by 4:00 pm on Tuesday September

More information

LAB Exercise #4 - Answers The Traction Vector and Stress Tensor. Introduction. Format of lab. Preparation reading

LAB Exercise #4 - Answers The Traction Vector and Stress Tensor. Introduction. Format of lab. Preparation reading LAB Exercise #4 - Answers The Traction Vector and Stress Tensor Due: Thursday, 26 February 2009 (Special Thanks to D.D. Pollard who pioneered this exercise in 1991) Introduction Stress concentrations in

More information

Math 70 and 95 Master Syllabus Beginning and Intermediate Algebra, 5th ed., Miller, O Neill, Hyde with ALEKS.

Math 70 and 95 Master Syllabus Beginning and Intermediate Algebra, 5th ed., Miller, O Neill, Hyde with ALEKS. Math 70 and 95 Master Syllabus 2017-2018 Course Coordinator: Tammy Nezol (tnezol@uoregon.edu) Textbook and ALEKS: Beginning and Intermediate Algebra, 5th ed., Miller, O Neill, Hyde with ALEKS. We have

More information

To explore and investigate projectile motion and how it can be applied to various problems.

To explore and investigate projectile motion and how it can be applied to various problems. NAME: ΔY = 0 Projectile Motion Computer Lab Purpose: To explore and investigate projectile motion and how it can be applied to various problems. Procedure: 1. First, go to the following web site http://galileoandeinstein.physics.virginia.edu/more_stuff/applets/projectile

More information

Spring 2018 Math Week Week 1 Task List

Spring 2018 Math Week Week 1 Task List Spring 2018 Math 143 - Week 1 25 Week 1 Task List This week we will cover Sections 1.1 1.4 in your e-book. Work through each of the following tasks, carefully filling in the following pages in your notebook.

More information

Cart on a Ramp. Evaluation Copy. Figure 1. Vernier Dynamics Track. Motion Detector Bracket

Cart on a Ramp. Evaluation Copy. Figure 1. Vernier Dynamics Track. Motion Detector Bracket Cart on a Ramp Computer 3 This experiment uses an incline and a low-friction cart. If you give the cart a gentle push up the incline, the cart will roll upward, slow and stop, and then roll back down,

More information

The Coupled Pendulum Experiment

The Coupled Pendulum Experiment The Coupled Pendulum Experiment In this lab you will briefly study the motion of a simple pendulum, after which you will couple two pendulums and study the properties of this system. 1. Introduction to

More information

DuVal High School Summer Review Packet AP Calculus

DuVal High School Summer Review Packet AP Calculus DuVal High School Summer Review Packet AP Calculus Welcome to AP Calculus AB. This packet contains background skills you need to know for your AP Calculus. My suggestion is, you read the information and

More information

Yes. Yes. Yes. Experimental data: the concentration of a reactant or product measured as a function of time. Graph of conc. vs.

Yes. Yes. Yes. Experimental data: the concentration of a reactant or product measured as a function of time. Graph of conc. vs. Experimental data: the concentration of a reactant or product measured as a function of time Graph of conc. vs. time Is graph a straigh t line? No Graph of ln[conc.] vs. time Yes System is zero order Is

More information

adjacent hypotenuse opposite adjacent Thursday January 25 opposite hypotenuse This lecture: 2-dimensional motion Vectors Components

adjacent hypotenuse opposite adjacent Thursday January 25 opposite hypotenuse This lecture: 2-dimensional motion Vectors Components Thursday January 25 Assignments 1&2 Friday, 11:59pm.like every Friday Pre-Class Assignment 15min before class like every class Bring your lab print-out to lab Office Hours: Wed. 10-11am, 204 EAL Or by

More information

MATH REFRESHER ANSWER SHEET (Note: Only this answer sheet and the following graph page will be evaluated)

MATH REFRESHER ANSWER SHEET (Note: Only this answer sheet and the following graph page will be evaluated) NAME: SCORE: /50 MATH REFRESHER ANSWER SHEET (Note: Only this answer sheet and the following graph page will be evaluated) 1. 23. 2. 24. 3. 25. 4. 26. 5. 27. 6. 28. 7. 29. 8. 30. 9. 31. 10. 32. 11. 33.

More information

PHYS 111 HOMEWORK #5

PHYS 111 HOMEWORK #5 PHYS 111 HOMEWORK #5 Due : 9 Sept. 016 This is a homework set about projectile motion, so we will be using the equations of motion throughout. Therefore, I will collect all those equations here at the

More information

Introduction Assignment

Introduction Assignment FOUNDATIONS OF MATHEMATICS 11 Welcome to FOM 11! This assignment will help you review some topics from a previous math course and introduce you to some of the topics that you ll be studying this year.

More information

Lecture 5. September 4, 2018 Math/CS 471: Introduction to Scientific Computing University of New Mexico

Lecture 5. September 4, 2018 Math/CS 471: Introduction to Scientific Computing University of New Mexico Lecture 5 September 4, 2018 Math/CS 471: Introduction to Scientific Computing University of New Mexico 1 Review: Office hours at regularly scheduled times this week Tuesday: 9:30am-11am Wed: 2:30pm-4:00pm

More information

Project 2: Using linear systems for numerical solution of boundary value problems

Project 2: Using linear systems for numerical solution of boundary value problems LINEAR ALGEBRA, MATH 124 Instructor: Dr. T.I. Lakoba Project 2: Using linear systems for numerical solution of boundary value problems Goal Introduce one of the most important applications of Linear Algebra

More information

Unit 1, Lessons 2-5: Vectors in Two Dimensions

Unit 1, Lessons 2-5: Vectors in Two Dimensions Unit 1, Lessons 2-5: Vectors in Two Dimensions Textbook Sign-Out Put your name in it and let s go! Check-In Any questions from last day s homework? Vector Addition 1. Find the resultant displacement

More information

Enzyme Catalysis Lab

Enzyme Catalysis Lab AP Biology Name: Enzyme Catalysis Lab Objectives In this laboratory, you will observe the role of an enzyme (catalase) in conversion of hydrogen peroxide (H 2 O 2 ) to water and oxygen determine the rate

More information

Temperature measurement

Temperature measurement Luleå University of Technology Johan Carlson Last revision: July 22, 2009 Measurement Technology and Uncertainty Analysis - E7021E Lab 3 Temperature measurement Introduction In this lab you are given a

More information

MEASUREMENT VARIATION

MEASUREMENT VARIATION Name Partner(s) Section Date MEASUREMENT VARIATION OBJECT This activity focuses on the variability in measurements of a property and explores methods of expressing the variation. Let's explore! PROCEDURE.

More information

MEASUREMENT OF THE CHARGE TO MASS RATIO (e/m e ) OF AN ELECTRON

MEASUREMENT OF THE CHARGE TO MASS RATIO (e/m e ) OF AN ELECTRON MEASUREMENT OF THE CHARGE TO MASS RATIO (e/m e ) OF AN ELECTRON Object This experiment will allow you to observe and understand the motion of a charged particle in a magnetic field and to measure the ratio

More information

MATH 122A FINAL EXAM STUDY GUIDE (Spring 2014)

MATH 122A FINAL EXAM STUDY GUIDE (Spring 2014) MATH A FINAL EXAM STUDY GUIDE (Spring 0) The final eam for spring 0 will have a multiple choice format. This will allow us to offer the final eam as late in the course as possible, giving more in-class

More information

KINETICS II - THE IODINATION OF ACETONE Determining the Activation Energy for a Chemical Reaction

KINETICS II - THE IODINATION OF ACETONE Determining the Activation Energy for a Chemical Reaction KINETICS II - THE IODINATION OF ACETONE Determining the Activation Energy for a Chemical Reaction The rate of a chemical reaction depends on several factors: the nature of the reaction, the concentrations

More information

Math 259 Winter Solutions to Homework # We will substitute for x and y in the linear equation and then solve for r. x + y = 9.

Math 259 Winter Solutions to Homework # We will substitute for x and y in the linear equation and then solve for r. x + y = 9. Math 59 Winter 9 Solutions to Homework Problems from Pages 5-5 (Section 9.) 18. We will substitute for x and y in the linear equation and then solve for r. x + y = 9 r cos(θ) + r sin(θ) = 9 r (cos(θ) +

More information

Homework 2: Kinematics and Dynamics of Particles Due Friday Feb 12, Pressurized tank

Homework 2: Kinematics and Dynamics of Particles Due Friday Feb 12, Pressurized tank EN40: Dynamics and Vibrations Homework 2: Kinematics and Dynamics of Particles Due Friday Feb 12, 2016 School of Engineering Brown University 1. The figure illustrates an idealized model of a gas gun (used,

More information

Laboratory handout 1 Mathematical preliminaries

Laboratory handout 1 Mathematical preliminaries laboratory handouts, me 340 2 Laboratory handout 1 Mathematical preliminaries In this handout, an expression on the left of the symbol := is defined in terms of the expression on the right. In contrast,

More information

Date: Summer Stem Section:

Date: Summer Stem Section: Page 1 of 7 Name: Date: Summer Stem Section: Summer assignment: Build a Molecule Computer Simulation Learning Goals: 1. Students can describe the difference between a molecule name and chemical formula.

More information

Instructor Notes for Module 5

Instructor Notes for Module 5 Instructor Notes for Module 5 M5_I3 Transformations of Polynomial Functions The Pre-class assignment for this section (PC3) on IMathAS consists of problem #1 on p. 195 in the workbook and a discussion

More information

Systems of Linear ODEs

Systems of Linear ODEs P a g e 1 Systems of Linear ODEs Systems of ordinary differential equations can be solved in much the same way as discrete dynamical systems if the differential equations are linear. We will focus here

More information

- - - - - - - - - - - - - - - - - - DISCLAIMER - - - - - - - - - - - - - - - - - - General Information: This is a midterm from a previous semester. This means: This midterm contains problems that are of

More information

Project Two. James K. Peterson. March 26, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Project Two. James K. Peterson. March 26, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Project Two James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 26, 2019 Outline 1 Cooling Models 2 Estimating the Cooling Rate k 3 Typical

More information

What is calculus? Consider the way that Archimedes figured out the formula for the area of a circle:

What is calculus? Consider the way that Archimedes figured out the formula for the area of a circle: What is calculus? Consider the way that Archimedes figured out the formula for the area of a circle: Calculus involves formally describing what happens as a value becomes infinitesimally small (or large).

More information

Project Two. Outline. James K. Peterson. March 27, Cooling Models. Estimating the Cooling Rate k. Typical Cooling Project Matlab Session

Project Two. Outline. James K. Peterson. March 27, Cooling Models. Estimating the Cooling Rate k. Typical Cooling Project Matlab Session Project Two James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 27, 2018 Outline Cooling Models Estimating the Cooling Rate k Typical Cooling

More information

Chemistry. Baseline Cornerstone Assessment

Chemistry. Baseline Cornerstone Assessment Chemistry Baseline Cornerstone Assessment The Cornerstone Assessments were developed with support through the VDOE Mathematics and Science Partnership Grant Program NCLB Title II, Part B program by high

More information

MATH 135 PRE-CALCULUS: ELEMENTARY FUNCTIONS COURSE SYLLABUS FALL 2012

MATH 135 PRE-CALCULUS: ELEMENTARY FUNCTIONS COURSE SYLLABUS FALL 2012 Instructor: Course: Prereq: Description: Learning Outcomes: Gigi Drent Office: Faculty One, Room 115 Office Hours: MW 10:00 10:50 or by appointment Phone: 808-245-8289 Email: gdrent@hawaii.edu (best way

More information

3.2.2 Kinetics. Effect of temperature. 145 minutes. 145 marks. Page 1 of 22

3.2.2 Kinetics. Effect of temperature. 145 minutes. 145 marks. Page 1 of 22 3.. Kinetics Effect of temperature 145 minutes 145 marks Page 1 of Q1. (a) State what is meant by the term activation energy of a reaction. (b) (c) State in general terms how a catalyst increases the rate

More information

QUANTUM CHEMISTRY PROJECT 3: PARTS B AND C

QUANTUM CHEMISTRY PROJECT 3: PARTS B AND C Chemistry 460 Fall 2017 Dr. Jean M. Standard November 6, 2017 QUANTUM CHEMISTRY PROJECT 3: PARTS B AND C PART B: POTENTIAL CURVE, SPECTROSCOPIC CONSTANTS, AND DISSOCIATION ENERGY OF DIATOMIC HYDROGEN (20

More information

Catalysts The effect of various catalysts on the rate of decomposition of hydrogen peroxide (H2O2)

Catalysts The effect of various catalysts on the rate of decomposition of hydrogen peroxide (H2O2) Catalysts The effect of various catalysts on the rate of decomposition of hydrogen peroxide (H2O2) This content is aimed at KS3/4 students and is a two lesson worksheet (including a practical demonstration)

More information

6A Lab Post-test. Instructions for printed version. Week 10, Fall 2016

6A Lab Post-test. Instructions for printed version. Week 10, Fall 2016 6A Lab Post-test Instructions for printed version Week 10, Fall 2016 This is the printed version of 6A Lab post-test. Please complete it during your final 6A lab, which will occur during week 10. DO NOT

More information

This Week. Next Week

This Week. Next Week This Week Tutorial and Test 1, in the lab (chapters 1 and 2) Next Week Experiment 1: Measurement of Lenth and Mass WileyPLUS Assinment 1 now available Due Monday, October 5 at 11:00 pm Chapters 2 & 3 28

More information

Collision Theory of Reaction Rates

Collision Theory of Reaction Rates Collision Theory of Reaction Rates If you have two reactants, they can only react if they come into contact with each other i.e. if they collide Then, they MAY react Why May? Collision alone is not enough

More information

AP CALCULUS. DUE THE FIRST DAY OF SCHOOL! This work will count as part of your first quarter grade.

AP CALCULUS. DUE THE FIRST DAY OF SCHOOL! This work will count as part of your first quarter grade. Celina High School Math Department Summer Review Packet AP CALCULUS DUE THE FIRST DAY OF SCHOOL! This work will count as part of your first quarter grade. The problems in this packet are designed to help

More information

Review 1D motion. Other 1D equations (in table 2-1) are restatements of these

Review 1D motion. Other 1D equations (in table 2-1) are restatements of these Review 1D motion Constant acceleration Position (x) and velocity (v) as a function of time Note when clock starts (t= ), the position and velocity are x and v v = v + at 1 x = x + vt + at Other 1D equations

More information

21-Jan-2018 Chemsheets A Page 1

21-Jan-2018 Chemsheets A Page 1 www.chemsheets.co.uk 21-Jan-2018 Chemsheets A2 1001 Page 1 SECTION 1 Recap of AS Kinetics What is reaction rate? The rate of a chemical reaction is a measure of how fast a reaction takes place. It is defined

More information

Working with Digital Elevation Models in ArcGIS 8.3

Working with Digital Elevation Models in ArcGIS 8.3 Working with Digital Elevation Models in ArcGIS 8.3 The homework that you need to turn in is found at the end of this document. This lab continues your introduction to using the Spatial Analyst Extension

More information

Motion with Changing Speed

Motion with Changing Speed OBJECTIVES Motion with Changing Speed Collect position, velocity, and acceleration data as a ball travels straight up and down. Analyze the position vs. time, velocity vs. time, and acceleration vs. time

More information

Reaction Coordinates. Activation Energy. Catalysis

Reaction Coordinates. Activation Energy. Catalysis Today Reaction Coordinates Activation Energy Catalysis We have a balloon with H2 and O2 why is not reacting? 2H2(g) + O2(g) 2H2O(g) We have a balloon with H2 and O2 why is not reacting? 2H2(g) + O2(g)

More information

AP Calculus AB Summer Assignment 2018

AP Calculus AB Summer Assignment 2018 AP Calculus AB Summer Assignment 018 Name: Date Submitted: Welcome to AP Calculus AB. This will be the toughest class yet in your mathematical careers, but the benefit you will receive by having this eperience

More information

1. Type your solutions. This homework is mainly a programming assignment.

1. Type your solutions. This homework is mainly a programming assignment. THE UNIVERSITY OF TEXAS AT SAN ANTONIO EE 5243 INTRODUCTION TO CYBER-PHYSICAL SYSTEMS H O M E W O R K S # 6 + 7 Ahmad F. Taha October 22, 2015 READ Homework Instructions: 1. Type your solutions. This homework

More information

Problem 1 (10 points)

Problem 1 (10 points) y x CHEN 1703 - HOMEWORK 4 Submit your MATLAB solutions via the course web site. Be sure to include your name and UNID in your m-file. Submit each solution seperately. Also be sure to document your solutions

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Objective: Students will gain familiarity with using Excel to record data, display data properly, use built-in formulae to do calculations, and plot and fit data with linear functions.

More information

P3317 HW from Lecture 7+8 and Recitation 4

P3317 HW from Lecture 7+8 and Recitation 4 P3317 HW from Lecture 7+8 and Recitation 4 Due Friday Tuesday September 25 Problem 1. In class we argued that an ammonia atom in an electric field can be modeled by a two-level system, described by a Schrodinger

More information

ALGEBRA I FORM I. Textbook: Algebra, Second Edition;Prentice Hall,2002

ALGEBRA I FORM I. Textbook: Algebra, Second Edition;Prentice Hall,2002 ALGEBRA I FORM I Textbook: Algebra, Second Edition;Prentice Hall,00 Prerequisites: Students are expected to have a knowledge of Pre Algebra and proficiency of basic math skills including: positive and

More information

Purpose: Materials: WARNING! Section: Partner 2: Partner 1:

Purpose: Materials: WARNING! Section: Partner 2: Partner 1: Partner 1: Partner 2: Section: PLEASE NOTE: You will need this particular lab report later in the semester again for the homework of the Rolling Motion Experiment. When you get back this graded report,

More information

Purpose: This lab is an experiment to verify Malus Law for polarized light in both a two and three polarizer system.

Purpose: This lab is an experiment to verify Malus Law for polarized light in both a two and three polarizer system. Purpose: This lab is an experiment to verify Malus Law for polarized light in both a two and three polarizer system. The basic description of Malus law is given as I = I 0 (cos 2 θ ) Where I is the transmitted

More information

MATH EVALUATION. What will you learn in this Lab?

MATH EVALUATION. What will you learn in this Lab? MATH EVALUATION What will you learn in this Lab? This exercise is designed to assess whether you have been exposed to the mathematical methods and skills necessary to complete the lab exercises you will

More information

Physics Chapter 3 Notes. Section 3-1: Introduction to Vectors (pages 80-83)

Physics Chapter 3 Notes. Section 3-1: Introduction to Vectors (pages 80-83) Physics Chapter 3 Notes Section 3-1: Introduction to Vectors (pages 80-83) We can use vectors to indicate both the magnitude of a quantity, and the direction. Vectors are often used in 2- dimensional problems.

More information

Calculus Honors and Introduction to Calculus

Calculus Honors and Introduction to Calculus Calculus Honors and Introduction to Calculus Name: This summer packet is for students entering Calculus Honors or Introduction to Calculus in the Fall of 015. The material represents concepts and skills

More information

Introduction Assignment

Introduction Assignment PRE-CALCULUS 11 Introduction Assignment Welcome to PREC 11! This assignment will help you review some topics from a previous math course and introduce you to some of the topics that you ll be studying

More information

Homework 3: Kinematics and Dynamics of Particles Due Friday Feb 16, 2018

Homework 3: Kinematics and Dynamics of Particles Due Friday Feb 16, 2018 EN4: Dynamics and Vibrations Homework 3: Kinematics and Dynamics of Particles Due Friday Feb 6, 8 School of Engineering Brown University Please submit your solutions to the MATLAB coding problems by uploading

More information

Example 2.1. Draw the points with polar coordinates: (i) (3, π) (ii) (2, π/4) (iii) (6, 2π/4) We illustrate all on the following graph:

Example 2.1. Draw the points with polar coordinates: (i) (3, π) (ii) (2, π/4) (iii) (6, 2π/4) We illustrate all on the following graph: Section 10.3: Polar Coordinates The polar coordinate system is another way to coordinatize the Cartesian plane. It is particularly useful when examining regions which are circular. 1. Cartesian Coordinates

More information

Summer AP Assignment Coversheet Falls Church High School

Summer AP Assignment Coversheet Falls Church High School Summer AP Assignment Coversheet Falls Church High School Course: AP Calculus AB Teacher Name/s: Veronica Moldoveanu, Ethan Batterman Assignment Title: AP Calculus AB Summer Packet Assignment Summary/Purpose:

More information

Electric Potential Energy and Electric Potential

Electric Potential Energy and Electric Potential Name: Lab 5: Electric Potential Energy and Electric Potential Group Members: Date: TA s Name: Objectives 1. To understand the electric potential of a point charge. 2. To understand the electric potential

More information

CHM112 Lab Iodine Clock Reaction Part 2 Grading Rubric

CHM112 Lab Iodine Clock Reaction Part 2 Grading Rubric Name Team Name CHM112 Lab Iodine Clock Reaction Part 2 Grading Rubric Criteria Points possible Points earned Lab Performance Printed lab handout and rubric was brought to lab 3 Initial concentrations completed

More information

Examining the Effect of Temperature on Reaction Rate

Examining the Effect of Temperature on Reaction Rate 1 Purpose: To measure reaction rate at different temperatures for the reaction between persulfate ions, S2O8-2, and iodide ions, I -, and thereby determine the activation energy and frequency factor for

More information

Tangent Lines Sec. 2.1, 2.7, & 2.8 (continued)

Tangent Lines Sec. 2.1, 2.7, & 2.8 (continued) Tangent Lines Sec. 2.1, 2.7, & 2.8 (continued) Prove this Result How Can a Derivative Not Exist? Remember that the derivative at a point (or slope of a tangent line) is a LIMIT, so it doesn t exist whenever

More information

Lab 6: Linear Algebra

Lab 6: Linear Algebra 6.1 Introduction Lab 6: Linear Algebra This lab is aimed at demonstrating Python s ability to solve linear algebra problems. At the end of the assignment, you should be able to write code that sets up

More information

AP Physics 1: summer homework, 2017

AP Physics 1: summer homework, 2017 AP Physics 1: summer homework, 2017 Name: Date: Dear AP Physics 1 Student, Hello! This packet is meant to be a review of the prerequisite math skills that you need to succeed in AP Physics 1. Please make

More information

Chapter 3 Motion in two or three dimensions

Chapter 3 Motion in two or three dimensions Chapter 3 Motion in two or three dimensions Lecture by Dr. Hebin Li Announcements As requested by the Disability Resource Center: In this class there is a student who is a client of Disability Resource

More information

11/2/ and the not so familiar. Chemical kinetics is the study of how fast reactions take place.

11/2/ and the not so familiar. Chemical kinetics is the study of how fast reactions take place. Familiar Kinetics...and the not so familiar Reaction Rates Chemical kinetics is the study of how fast reactions take place. Some happen almost instantaneously, while others can take millions of years.

More information

Homework #4 Chapter 15 Chemical Kinetics. Therefore, k depends only on temperature. The rate of the reaction depends on all of these items (a d).

Homework #4 Chapter 15 Chemical Kinetics. Therefore, k depends only on temperature. The rate of the reaction depends on all of these items (a d). Homework #4 Chapter 5 Chemical Kinetics 8. Arrhenius Equation Therefore, k depends only on temperature. The rate of the reaction depends on all of these items (a d). 4. a) d) b) c) e) 5. Rate has units

More information

LABORATORY 2. ENZYME CATALYSIS

LABORATORY 2. ENZYME CATALYSIS LABORATORY 2 STUDENT GUIDE LABORATORY 2. ENZYME CATALYSIS Objectives In this laboratory, you will observe the role of an enzyme (catalase) in conversion of hydrogen peroxide (H 2 O 2 ) to water and oxygen

More information

Lab I. 2D Motion. 1 Introduction. 2 Theory. 2.1 scalars and vectors LAB I. 2D MOTION 15

Lab I. 2D Motion. 1 Introduction. 2 Theory. 2.1 scalars and vectors LAB I. 2D MOTION 15 LAB I. 2D MOTION 15 Lab I 2D Motion 1 Introduction In this lab we will examine simple two-dimensional motion without acceleration. Motion in two dimensions can often be broken up into two separate one-dimensional

More information

Projectile Motion. v a = -9.8 m/s 2. Good practice problems in book: 3.23, 3.25, 3.27, 3.29, 3.31, 3.33, 3.43, 3.47, 3.51, 3.53, 3.

Projectile Motion. v a = -9.8 m/s 2. Good practice problems in book: 3.23, 3.25, 3.27, 3.29, 3.31, 3.33, 3.43, 3.47, 3.51, 3.53, 3. v a = -9.8 m/s 2 A projectile is anything experiencing free-fall, particularly in two dimensions. 3.23, 3.25, 3.27, 3.29, 3.31, 3.33, 3.43, 3.47, 3.51, 3.53, 3.55 Projectile Motion Good practice problems

More information