EEE 187: Take Home Test #2

Size: px
Start display at page:

Download "EEE 187: Take Home Test #2"

Transcription

1 EEE 187: Take Home Test #2 Date: 11/30/2017 Due : 12/06/2017 at 5pm 1 Please read. Two versions of the exam are proposed. You need to solve one only. Version A: Four problems, Python is required for some questions. Version B: Five problems, no specific programming language is required Please clearly mention which version you solved. You can discuss the exam with one student consultant. You need to provide the name of your consultant on the first page of your paper. You and your consultant cannot discuss the exam with a third party. The instructor is not considered a third party. You cannot divide work between you and your consultant. Every student should work on every question and problem. Reports are individual. Your consultant cannot contribute to writing your report. Team members can solve different versions. However, they can contribute to the common problems only. In other words you cannot work with your consultant on problems that are not included in your version. Show your work for partial credit. Attach your code. Two points are reserved to the organization in each problem. This is version B. PROBLEM 1: ACCELEROMETER LEAST SQUARES FILTERING (10 PTS) The EEE 187 class decided to send Chris in an exploratory mission to an unknown planet. Chris took with him an accelerometer, two apples, a wig, and the energy drink shown in figure 1a. While there is a chance that Chris will never return to earth, he still accepted the mission. After a few days on the planet, Chris was able to send the acceleration data shown in figure 1b. Chris is very proud and is asking us to estimate the acceleration of gravity of the new planet. He suggested to use the recursive least squares filtering method for acceleration estimation. This filter is characterized by the following equations where G(k + 1) = P (k)h T [ HP (k)h T + R(k) ] 1 ˆx(k + 1) = ˆx(k) + G(k)[y(k) H ˆx(k)] (2) P (k + 1) = [I G(k)H] P (k)[i G(k)H] T + [G(k)]R(k)[G(k)] T (3) ˆx is the estimated acceleration P is the covariance matrix of the estimated acceleration y is the measured acceleration R is the measurement covariance matrix. It characterizes the goodness of the measurement. H is a matrix that gives the relationship between ˆx and y. That is y = H ˆx. The value of H needs to be determined in this problem. G is the filter s gain. I is the identity matrix. k is the iteration index and [ ] T is the transpose matrix. The goal is to determine the estimated acceleration ˆx and its covariance matrix P at each iteration when a new measurement is obtained. The data points can be obtained from the instructor s website. 1) The planet that Chris visited does not have a name, suggest a meaningful name for it. 2) Draw Chris on the planet. (1)

2 Meassured acceleration m/s (a) Energy drink Figure 1: Figures for problem Time (s) (b) Measured acceleration Right Wheel Wheel rotation (rad/s) Left Wheel Time in seconds Figure 2: Wheels angular speed in radians per seconds 3) Chris claimed that planet earth seen from the new planet is flat. What is your scientific interpretation of the claim? 4) Determine matrix H knowing that y and ˆx represent the measured and estimated value of the same quantity. 5) Write code to implement the recursive least squares method to obtain the acceleration of gravity of the planet. Include your code in the report. The measurement data can be retrieved from the instructor s website. The measurement covariance is R = Feel free to pick reasonable initial guess values for ˆx and P. For example, you can take ˆx(t = 0) = 9.81m/s 2, P (t = 0) = R. 6) On the same graph, plot the measured acceleration y and the estimated acceleration ˆx as a function of time. 7) What is your estimation of the acceleration of gravity of the new planet? Feel free to use the last value of ˆx. 8) What is the variance of the estimation? Feel free to use the last value of P. 9) Compare between the covariance of the measurement and the covariance of the estimation and discuss the effectiveness of the least squares filter. 10) Assuming the acceleration of gravity of the new planet is 26 in SI unit, by how much the height of Chris will change when he returns to earth? Note: Please do not spend two days on questions 1), 2), 3) and 10). PROBLEM 2: ORIENTATION ANGLE FROM ROTATIONAL SPEED (10 PTS). The wheels rotation (in rad/s) for a differential drive is shown in figure 2 in the time interval [0, 120s]. The radius of the wheels and the distance between them are r = 0.1m and L = 0.3m, respectively. The data for the angular speed of the wheels can be retrieved from the instructor s website. 1) Plot the angular velocity ω(t) of the robot in the time interval [0, 120s]

3 3 2) Plot the orientation angle θ(t) of the robot in the time interval [0, 120s]. Note that at time t = 0, the robot s orientation is π/3rad. 3) Plot the angular acceleration α(t) of the robot in the time interval [1, 120s]. We know that ω(0) = 0rad/s. 4) What is the final value (at time t = 120s) of the orientation angle in rad/s? Hint: Note that θ = ω and ω = α. PROBLEM 3: GPS PSEUDORANGE EQUATIONS. (10 PTS) We want to determine the time shift and the coordinates of a GPS receiver using trilateration. The location of the satellites is summarized in the table below. Satellite 1 Satellite 2 Satellite 3 Satellite 4 x y (4) z P SR Table 2: Normalized coordinates of the satellites and pseudorange values. 1) What is the minimum number of GPS satellites needed to determine the time and the coordinates of the receiver? 2) Determine the time shift and the coordinates of the GPS receiver. PROBLEM 4: CALIBRATION OF SHARP IR SENSOR (10 PTS) In this problem we want to determine the calibration curve of the sharp sensor shown in figures 3 and 4. It is clear that the relationship between the input (distance) and output (voltage) is nonlinear. In order to have one to one relationship, we ignore any distance that is less than 3cm. The data points are shown in table 3. To obtain the calibration curve, we propose to use polynomial regression model as follows where d i is the distance in centimeters and v i is the voltage in volts. a 0, a 1,..., a k are the coefficients of the polynomial, to be determined. k is the degree of the polynomial n is the number of data points. For n measurements, system (5) can be written under matrix form as follows d 0 1 v 1 v k 1 a 0 d 1. = 1 v 2 v2 k a d n 1 v n vn k a k System (7) can be written under matrix form as follows where and d i = a 0 + a 1 v i + a 2 v 2 i a k v k i (5) i = 1,..., n (6) D = V A (8) D = [ ] T d 0 d 1 d n (9) 1 v 1 v k 1 1 v 2 v k 2 V =..... (10). 1 v n vn k A = [ a 0 a 1 a k ] T (11) (7)

4 4 Figure 3: Sensor input/output data from datasheet Voltage (V) Distance (cm) Figure 4: Sensor input/output data in the interval [3, 40]cm The least squares method can be used to obtain the coefficient of the polynomials as follows A = ( V T V ) 1 V T D (12) This equation is called the modified Pseudo-Cash equation. 1) Use Matlab, Python or similar tools to determine the coefficients when a polynomial of degree six (k = 6) is used. Use equation (12). 2) Use Matlab, Python or similar tools to determine the coefficients when a polynomial of degree four(k = 4) is used. Use equation (12). 3) Plot the polynomials on the same graph as the data points shown in figure 4. (These are the points shown in table

5 5 3. They can be obtained from the instructor s website) 4) Use your polynomials to compute the absolute error for the points shown in table 4 and complete the table. 5) From the polynomial of degree six, what is the distance if the voltage reads 0.85V? Distance(cm) V oltage(v ) Table 3: Data for Sharp sensor. The distance The voltage Error in distance Error in distance in in using 4th degree using 6th degree centimeters volts polynomial polynomial Table 4: Specific calibration values for comparison (13) PROBLEM 5: DIFFERENTIAL DRIVE AND PROPORTIONAL CONTROL (10 PTS) We propose to use a simple proportional law to plan the path of a differential drive robot to reach a given configuration. The initial and final configurations are shown in table 1 below. Initial Goal x 1 15 y 1 15 θ π/2 π/4 Table 1: Initial and desired configurations The configurations are shown in figure 5. The robot s motion is given by (14) ẋ = v cos(θ) (15) ẏ = v sin(θ) (16) θ = ω (17)

6 6 Figure 5: Initial and desired configurations where v and ω are the linear and angular speeds of the robot. The maximum speed of the robot is 5m/s. The odometry equations are given by x(k + 1) = T v(k) cos(θ(k)) + x(k) (18) y(k + 1) = T v(k) sin(θ(k)) + y(k) (19) θ(k + 1) = T ω(k) + θ(k) (20) The proposed closed loop law is given by v(k) = K 1 ρ(k) (21) ω(k) = K 2 (θ(k) θ Goal ) + K 3 (λ(k) θ Goal ) (22) with and K 1 = 0.1, K 2 = 0.5, K 3 = 0.6 (23) λ(k) = atan2(y G (k) y(k), x G (k) x(k)), ρ(k) = (y G (k) y(k)) 2 + (x G (k) x(k)) 2 (24) where (x G, y G ) and (x, y) represent the coordinates of the destination point (goal) and the robot, respectively. Note that the values of the gains are chosen to satisfy stability. We want to use the odometry equations with a sampling time of T = 0.1s 1) Write code to simulate the robot s path and show its trajectory. You can represent the robot by a geometric point. 2) Plot the speed of the robot as a function of time. 3) Plot the orientation angle of the robot as a function of time. 4) Write code to create a video of the simulation. Send the video to the instructor by . Video taken by a camera does not count and will not be considered.

1 Kalman Filter Introduction

1 Kalman Filter Introduction 1 Kalman Filter Introduction You should first read Chapter 1 of Stochastic models, estimation, and control: Volume 1 by Peter S. Maybec (available here). 1.1 Explanation of Equations (1-3) and (1-4) Equation

More information

UNIT 15 ROTATION KINEMATICS. Objectives

UNIT 15 ROTATION KINEMATICS. Objectives UNIT 5 ROTATION KINEMATICS Objectives to understand the concept of angular speed to understand the concept of angular acceleration to understand and be able to use kinematics equations to describe the

More information

University of Georgia Department of Mathematics. Math 1113 Final Exam Fall 2016

University of Georgia Department of Mathematics. Math 1113 Final Exam Fall 2016 University of Georgia Department of Mathematics Math 1113 Final Exam Fall 2016 By providing my signature below I acknowledge that I abide by the University s academic honesty policy. This is my work, and

More information

Final Exam December 13, 2016

Final Exam December 13, 2016 Final Exam Instructions: You have 120 minutes to complete this exam. This is a closed-boo, closed-notes exam. You are allowed to use a calculator during the exam. Do NOT unstaple your exam. Do NOT write

More information

UNIVERSITY OF SASKATCHEWAN Department of Physics and Engineering Physics

UNIVERSITY OF SASKATCHEWAN Department of Physics and Engineering Physics UNIVERSITY OF SASKATCHEWAN Department of Physics and Engineering Physics Physics 115.3 MIDTERM TEST Alternative Sitting October 011 Time: 90 minutes NAME: (Last) Please Print (Given) STUDENT NO.: LECTURE

More information

Rotational Motion. Variable Translational Motion Rotational Motion Position x θ Velocity v dx/dt ω dθ/dt Acceleration a dv/dt α dω/dt

Rotational Motion. Variable Translational Motion Rotational Motion Position x θ Velocity v dx/dt ω dθ/dt Acceleration a dv/dt α dω/dt Team: Rotational Motion Rotational motion is everywhere. When you push a door, it rotates. When you pedal a bike, the wheel rotates. When you start an engine, many parts rotate. Electrons rotate in an

More information

Level 3 Physics, 2013

Level 3 Physics, 2013 91524 915240 3SUPERVISOR S Level 3 Physics, 2013 91524 Demonstrate understanding of mechanical systems 2.00 pm Monday 25 November 2013 Credits: Six Achievement Achievement with Merit Achievement with Excellence

More information

ω = k/m x = A cos (ωt + ϕ 0 ) L = I ω a x = ω 2 x P = F v P = de sys J = F dt = p w = m g F G = Gm 1m 2 D = 1 2 CρAv2 a r = v2

ω = k/m x = A cos (ωt + ϕ 0 ) L = I ω a x = ω 2 x P = F v P = de sys J = F dt = p w = m g F G = Gm 1m 2 D = 1 2 CρAv2 a r = v2 PHYS 2211 A, B, & C Final Exam Formulæ & Constants Spring 2017 Unless otherwise directed, drag is to be neglected and all problems take place on Earth, use the gravitational definition of weight, and all

More information

A Level. A Level Physics. Circular Motion (Answers) Edexcel. Name: Total Marks: /30

A Level. A Level Physics. Circular Motion (Answers) Edexcel. Name: Total Marks: /30 Visit http://www.mathsmadeeasy.co.uk/ for more fantastic resources. Edexcel A Level A Level Physics Circular Motion (Answers) Name: Total Marks: /30 Maths Made Easy Complete Tuition Ltd 2017 1. Total for

More information

SLAM Techniques and Algorithms. Jack Collier. Canada. Recherche et développement pour la défense Canada. Defence Research and Development Canada

SLAM Techniques and Algorithms. Jack Collier. Canada. Recherche et développement pour la défense Canada. Defence Research and Development Canada SLAM Techniques and Algorithms Jack Collier Defence Research and Development Canada Recherche et développement pour la défense Canada Canada Goals What will we learn Gain an appreciation for what SLAM

More information

AP Physics C 2015 Summer Assignment

AP Physics C 2015 Summer Assignment AP Physics C 2015 Summer Assignment College Board (the people in charge of AP exams) recommends students to only take AP Physics C if they have already taken a 1 st year physics course and are currently

More information

ENGR352 Problem Set 02

ENGR352 Problem Set 02 engr352/engr352p02 September 13, 2018) ENGR352 Problem Set 02 Transfer function of an estimator 1. Using Eq. (1.1.4-27) from the text, find the correct value of r ss (the result given in the text is incorrect).

More information

S13 PHY321: Final May 1, NOTE: Show all your work. No credit for unsupported answers. Turn the front page only when advised by the instructor!

S13 PHY321: Final May 1, NOTE: Show all your work. No credit for unsupported answers. Turn the front page only when advised by the instructor! Name: Student ID: S13 PHY321: Final May 1, 2013 NOTE: Show all your work. No credit for unsupported answers. Turn the front page only when advised by the instructor! The exam consists of 6 problems (60

More information

Designing Information Devices and Systems II Fall 2018 Elad Alon and Miki Lustig Homework 7

Designing Information Devices and Systems II Fall 2018 Elad Alon and Miki Lustig Homework 7 EECS 16B Designing Information Devices and Systems II Fall 2018 Elad Alon and Miki Lustig Homework 7 This homework is due on October 17, 2018 at 11:59pm Self grades are due on October 22, 2018 at 11:59pm

More information

Sensors Fusion for Mobile Robotics localization. M. De Cecco - Robotics Perception and Action

Sensors Fusion for Mobile Robotics localization. M. De Cecco - Robotics Perception and Action Sensors Fusion for Mobile Robotics localization 1 Until now we ve presented the main principles and features of incremental and absolute (environment referred localization systems) could you summarize

More information

Final Exam December 15, 2014

Final Exam December 15, 2014 Final Exam Instructions: You have 120 minutes to complete this exam. This is a closed-book, closed-notes exam. You are allowed to use the ME approved calculator only during the exam. Usage of mobile phones

More information

Date: 31 March (1) The only reference material you may use is one 8½x11 crib sheet and a calculator.

Date: 31 March (1) The only reference material you may use is one 8½x11 crib sheet and a calculator. PH1140: Oscillations and Waves Name: SOLUTIONS AT END Conference: Date: 31 March 2005 EXAM #1: D2006 INSTRUCTIONS: (1) The only reference material you may use is one 8½x11 crib sheet and a calculator.

More information

Circular Motion & Rotational Mechanics. Semester 2 Review Project - Sonya Kalara, Ellie Kim, and Charlotte Spry

Circular Motion & Rotational Mechanics. Semester 2 Review Project - Sonya Kalara, Ellie Kim, and Charlotte Spry Circular Motion & Rotational Mechanics Semester 2 Review Project - Sonya Kalara, Ellie Kim, and Charlotte Spry Definitions II. III. IV. I. Uniform Circular Motion - an object that moves in a circle at

More information

Introduction to Controls

Introduction to Controls EE 474 Review Exam 1 Name Answer each of the questions. Show your work. Note were essay-type answers are requested. Answer with complete sentences. Incomplete sentences will count heavily against the grade.

More information

(a) Draw the coordinate system you are using and draw the free body diagram of the block during rotation with constant speed.

(a) Draw the coordinate system you are using and draw the free body diagram of the block during rotation with constant speed. 4-[25 pts.] A block of mass m is placed at the side surface of a cone. The cone can rotate about an axis through its center so that the block can make circular motion. The static friction coefficient between

More information

Use a BLOCK letter to answer each question: A, B, C, or D (not lower case such a b or script such as D)

Use a BLOCK letter to answer each question: A, B, C, or D (not lower case such a b or script such as D) Physics 23 Spring 212 Answer Sheet Print LAST Name: Rec Sec Letter EM Mini-Test First Name: Recitation Instructor & Final Exam Student ID: Gently remove this page from your exam when you begin. Write clearly

More information

Recap I. Angular position: Angular displacement: s. Angular velocity: Angular Acceleration:

Recap I. Angular position: Angular displacement: s. Angular velocity: Angular Acceleration: Recap I Angular position: Angular displacement: s Angular velocity: Angular Acceleration: Every point on a rotating rigid object has the same angular, but not the same linear motion! Recap II Circular

More information

Chap. 15: Simple Harmonic Motion

Chap. 15: Simple Harmonic Motion Chap. 15: Simple Harmonic Motion Announcements: CAPA is due next Tuesday and next Friday. Web page: http://www.colorado.edu/physics/phys1110/phys1110_sp12/ Examples of periodic motion vibrating guitar

More information

Physics I Exam 1 Fall 2014 (version A)

Physics I Exam 1 Fall 2014 (version A) 95.141 Physics I Exam 1 Fall 014 (version A) Section Number Section instructor Last/First Name (print) / Last 3 Digits of Student ID Number: Answer all questions, beginning each new question in the space

More information

UNIVERSITY OF TORONTO Faculty of Arts and Science

UNIVERSITY OF TORONTO Faculty of Arts and Science UNIVERSITY OF TORONTO Faculty of Arts and Science DECEMBER 2016 EXAMINATIONS PHY 151H1F Duration - 3 hours Attempt all 10 questions. All questions are worth 5 points. Write your name and student number

More information

P113 University of Rochester NAME S. Manly Fall 2013

P113 University of Rochester NAME S. Manly Fall 2013 Exam 2 (November 12, 2013) Please read the problems carefully and answer them in the space provided. Write on the back of the page, if necessary. Show all your work. Partial credit will be given unless

More information

1 of 5 10/4/2009 8:45 PM

1 of 5 10/4/2009 8:45 PM http://sessionmasteringphysicscom/myct/assignmentprint?assignmentid= 1 of 5 10/4/2009 8:45 PM Chapter 8 Homework Due: 9:00am on Wednesday October 7 2009 Note: To understand how points are awarded read

More information

Section A Solving Absolute Value Inequalities

Section A Solving Absolute Value Inequalities AP Calculus BC Prerequisite Notes for Summer Review Packet for students who completed AP Calculus AB These notes are designed to help ou understand how to accuratel complete the Summer Review Packet. Go

More information

Kinematics. Basilio Bona. Semester 1, DAUIN Politecnico di Torino. B. Bona (DAUIN) Kinematics Semester 1, / 15

Kinematics. Basilio Bona. Semester 1, DAUIN Politecnico di Torino. B. Bona (DAUIN) Kinematics Semester 1, / 15 Kinematics Basilio Bona DAUIN Politecnico di Torino Semester 1, 2016-17 B. Bona (DAUIN) Kinematics Semester 1, 2016-17 1 / 15 Introduction The kinematic quantities used to represent a body frame are: position

More information

Math 30-1: Trigonometry One PRACTICE EXAM

Math 30-1: Trigonometry One PRACTICE EXAM Math 30-1: Trigonometry One PRACTICE EXAM 1. The angle 210 is equivalent to: degrees radians degrees radians 2. The reference angle of is: radians radians radians radians 3. The principal angle of 9.00

More information

Torque/Rotational Energy Mock Exam. Instructions: (105 points) Answer the following questions. SHOW ALL OF YOUR WORK.

Torque/Rotational Energy Mock Exam. Instructions: (105 points) Answer the following questions. SHOW ALL OF YOUR WORK. AP Physics C Spring, 2017 Torque/Rotational Energy Mock Exam Name: Answer Key Mr. Leonard Instructions: (105 points) Answer the following questions. SHOW ALL OF YOUR WORK. (22 pts ) 1. Two masses are attached

More information

Miscellaneous. Regarding reading materials. Again, ask questions (if you have) and ask them earlier

Miscellaneous. Regarding reading materials. Again, ask questions (if you have) and ask them earlier Miscellaneous Regarding reading materials Reading materials will be provided as needed If no assigned reading, it means I think the material from class is sufficient Should be enough for you to do your

More information

Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam!

Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Prüfung Regelungstechnik I (Control Systems I) Prof. Dr. Lino Guzzella 5. 2. 2 Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Do not mark up this translation aid -

More information

Uniform Circular Motion

Uniform Circular Motion Circular Motion Uniform Circular Motion Uniform Circular Motion Traveling with a constant speed in a circular path Even though the speed is constant, the acceleration is non-zero The acceleration responsible

More information

TechTest2010. The Sierra Environmental Studies Foundation. Published Reference Version

TechTest2010. The Sierra Environmental Studies Foundation. Published Reference Version TechTest00 Merit Scholarship Examination in the Sciences and Mathematics given on 7 March 00 sponsored by The Sierra Environmental Studies Foundation Solution Key V9mar0 TechTest00 Solutions Key / 0 00

More information

the robot in its current estimated position and orientation (also include a point at the reference point of the robot)

the robot in its current estimated position and orientation (also include a point at the reference point of the robot) CSCI 4190 Introduction to Robotic Algorithms, Spring 006 Assignment : out February 13, due February 3 and March Localization and the extended Kalman filter In this assignment, you will write a program

More information

PHYS 1441 Section 002 Lecture #19

PHYS 1441 Section 002 Lecture #19 PHYS 1441 Section 00 Lecture #19 Monday, April 8, 013 Fundamentals o the Rotational Motion Rotational Kinematics Equations o Rotational Kinematics Relationship Between Angular and Linear Quantities Rolling

More information

MATH 2300: CALCULUS 2 March 2, 2011 TEST 2

MATH 2300: CALCULUS 2 March 2, 2011 TEST 2 MATH 2300: CALCULUS 2 March 2, 2011 TEST 2 I have neither given nor received aid on this exam. Name: 001 A. Pajer............... (8am) 002 B. Katz-Moses.........(9am) 003 W. Stanton.......... (10am) 004

More information

Week 3: Wheeled Kinematics AMR - Autonomous Mobile Robots

Week 3: Wheeled Kinematics AMR - Autonomous Mobile Robots Week 3: Wheeled Kinematics AMR - Paul Furgale Margarita Chli, Marco Hutter, Martin Rufli, Davide Scaramuzza, Roland Siegwart Wheeled Kinematics 1 AMRx Flipped Classroom A Matlab exercise is coming later

More information

Experiment A11 Chaotic Double Pendulum Procedure

Experiment A11 Chaotic Double Pendulum Procedure AME 21216: Lab I Fall 2017 Experiment A11 Chaotic Double Pendulum Procedure Deliverables: Checked lab notebook, plots with captions Background Measuring and controlling the angular position and velocity

More information

Midterm. Introduction to Machine Learning. CS 189 Spring Please do not open the exam before you are instructed to do so.

Midterm. Introduction to Machine Learning. CS 189 Spring Please do not open the exam before you are instructed to do so. CS 89 Spring 07 Introduction to Machine Learning Midterm Please do not open the exam before you are instructed to do so. The exam is closed book, closed notes except your one-page cheat sheet. Electronic

More information

Physics 2210 Fall 2011 David Ailion FINAL EXAM. December 14, 2011

Physics 2210 Fall 2011 David Ailion FINAL EXAM. December 14, 2011 Dd Physics 2210 Fall 2011 David Ailion FINAL EXAM December 14, 2011 PLEASE FILL IN THE INFORMATION BELOW: Name (printed): Name (signed): Student ID Number (unid): u Discussion Instructor: Marc Lindley

More information

PHYS2330 Intermediate Mechanics Fall Final Exam Tuesday, 21 Dec 2010

PHYS2330 Intermediate Mechanics Fall Final Exam Tuesday, 21 Dec 2010 Name: PHYS2330 Intermediate Mechanics Fall 2010 Final Exam Tuesday, 21 Dec 2010 This exam has two parts. Part I has 20 multiple choice questions, worth two points each. Part II consists of six relatively

More information

Assessment Schedule 2016 Physics: Demonstrate understanding of mechanical systems (91524)

Assessment Schedule 2016 Physics: Demonstrate understanding of mechanical systems (91524) NCEA Level 3 Physics (91524) 2016 page 1 of 6 Assessment Schedule 2016 Physics: Demonstrate understanding of mechanical systems (91524) Evidence Statement NØ N1 N2 A3 A4 M5 M6 E7 E8 No response; no relevant

More information

NP-Completeness Part II

NP-Completeness Part II NP-Completeness Part II Please evaluate this course on Axess. Your comments really do make a difference. Announcements Problem Set 8 due tomorrow at 12:50PM sharp with one late day. Problem Set 9 out,

More information

Physics Exam 1 Formulas

Physics Exam 1 Formulas INSTRUCTIONS: Write your NAME on the front of the blue exam booklet. The exam is closed book, and you may have only pens/pencils and a calculator (no stored equations or programs and no graphing). Show

More information

Physics 2514 Lecture 22

Physics 2514 Lecture 22 Physics 2514 Lecture 22 P. Gutierrez Department of Physics & Astronomy University of Oklahoma Physics 2514 p. 1/15 Information Information needed for the exam Exam will be in the same format as the practice

More information

Exam 1: Physics 2113 Spring :00 PM, Monday, February 3, Abdelwahab Abdelwahab Lee Zuniga Tzanov Zuniga Sec 1 Sec 2 Sec 3 Sec 4 Sec 5 Sec 6

Exam 1: Physics 2113 Spring :00 PM, Monday, February 3, Abdelwahab Abdelwahab Lee Zuniga Tzanov Zuniga Sec 1 Sec 2 Sec 3 Sec 4 Sec 5 Sec 6 Exam 1: Physics 2113 Spring 2016 6:00 PM, Monday, February 3, 2016 Last Name First Name Clearly circle your section: MON/WEDS/FRI SECTIONS TUES/THURS SECTIONS Abdelwahab Abdelwahab Lee Zuniga Tzanov Zuniga

More information

Object Impact on the Free Surface and Added Mass Effect Laboratory Fall 2005 Prof. A. Techet

Object Impact on the Free Surface and Added Mass Effect Laboratory Fall 2005 Prof. A. Techet Object Impact on the Free Surface and Added Mass Effect.016 Laboratory Fall 005 Prof. A. Techet Introduction to Free Surface Impact Free surface impact of objects has applications to ocean engineering

More information

Homework Assignment 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon

Homework Assignment 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon ME 2016 A Spring Semester 2010 Computing Techniques 3-0-3 Homework Assignment 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon Description and Outcomes In

More information

Date: 1 April (1) The only reference material you may use is one 8½x11 crib sheet and a calculator.

Date: 1 April (1) The only reference material you may use is one 8½x11 crib sheet and a calculator. PH1140: Oscillations and Waves Name: Solutions Conference: Date: 1 April 2005 EXAM #1: D2005 INSTRUCTIONS: (1) The only reference material you may use is one 8½x11 crib sheet and a calculator. (2) Show

More information

PSI AP Physics I Work and Energy

PSI AP Physics I Work and Energy PSI AP Physics I Work and Energy Multiple-Choice questions 1. A driver in a 2000 kg Porsche wishes to pass a slow moving school bus on a 4 lane road. What is the average power in watts required to accelerate

More information

Lecture PowerPoints. Chapter 10 Physics for Scientists and Engineers, with Modern Physics, 4 th edition Giancoli

Lecture PowerPoints. Chapter 10 Physics for Scientists and Engineers, with Modern Physics, 4 th edition Giancoli Lecture PowerPoints Chapter 10 Physics for Scientists and Engineers, with Modern Physics, 4 th edition Giancoli 2009 Pearson Education, Inc. This work is protected by United States copyright laws and is

More information

ORF 363/COS 323 Final Exam, Fall 2015

ORF 363/COS 323 Final Exam, Fall 2015 Name: Princeton University ORF 363/COS 323 Final Exam, Fall 2015 January 13, 2016 Instructor: AIs: A.A. Ahmadi G. Hall, H. Hao, J. Ye, Z. Zhu 1. Please write out and sign the following pledge on top of

More information

Question: Total. Points:

Question: Total. Points: MATH 308 May 23, 2011 Final Exam Name: ID: Question: 1 2 3 4 5 6 7 8 9 Total Points: 0 20 20 20 20 20 20 20 20 160 Score: There are 9 problems on 9 pages in this exam (not counting the cover sheet). Make

More information

8.012 Physics I: Classical Mechanics Fall 2008

8.012 Physics I: Classical Mechanics Fall 2008 IT OpenCourseWare http://ocw.mit.edu 8.012 Physics I: Classical echanics Fall 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. ASSACHUSETTS INSTITUTE

More information

Final Exam Spring 2014 May 05, 2014

Final Exam Spring 2014 May 05, 2014 95.141 Final Exam Spring 2014 May 05, 2014 Section number Section instructor Last/First name Last 3 Digits of Student ID Number: Answer all questions, beginning each new question in the space provided.

More information

Review for 3 rd Midterm

Review for 3 rd Midterm Review for 3 rd Midterm Midterm is on 4/19 at 7:30pm in the same rooms as before You are allowed one double sided sheet of paper with any handwritten notes you like. The moment-of-inertia about the center-of-mass

More information

Nonlinear Oscillators: Free Response

Nonlinear Oscillators: Free Response 20 Nonlinear Oscillators: Free Response Tools Used in Lab 20 Pendulums To the Instructor: This lab is just an introduction to the nonlinear phase portraits, but the connection between phase portraits and

More information

Final Exam April 30, 2013

Final Exam April 30, 2013 Final Exam Instructions: You have 120 minutes to complete this exam. This is a closed-book, closed-notes exam. You are allowed to use a calculator during the exam. Usage of mobile phones and other electronic

More information

ME 132, Fall 2015, Quiz # 2

ME 132, Fall 2015, Quiz # 2 ME 132, Fall 2015, Quiz # 2 # 1 # 2 # 3 # 4 # 5 # 6 Total NAME 14 10 8 6 14 8 60 Rules: 1. 2 sheets of notes allowed, 8.5 11 inches. Both sides can be used. 2. Calculator is allowed. Keep it in plain view

More information

Show all work in answering the following questions. Partial credit may be given for problems involving calculations.

Show all work in answering the following questions. Partial credit may be given for problems involving calculations. Physics 3210, Spring 2017 Exam #1 Name: Signature: UID: Please read the following before continuing: Show all work in answering the following questions. Partial credit may be given for problems involving

More information

Physics 2211 ABC Quiz #3 Solutions Spring 2017

Physics 2211 ABC Quiz #3 Solutions Spring 2017 Physics 2211 ABC Quiz #3 Solutions Spring 2017 I. (16 points) A block of mass m b is suspended vertically on a ideal cord that then passes through a frictionless hole and is attached to a sphere of mass

More information

The Effect of Stale Ranging Data on Indoor 2-D Passive Localization

The Effect of Stale Ranging Data on Indoor 2-D Passive Localization The Effect of Stale Ranging Data on Indoor 2-D Passive Localization Chen Xia and Lance C. Pérez Department of Electrical Engineering University of Nebraska-Lincoln, USA chenxia@mariner.unl.edu lperez@unl.edu

More information

MA/OR/ST 706: Nonlinear Programming Midterm Exam Instructor: Dr. Kartik Sivaramakrishnan INSTRUCTIONS

MA/OR/ST 706: Nonlinear Programming Midterm Exam Instructor: Dr. Kartik Sivaramakrishnan INSTRUCTIONS MA/OR/ST 706: Nonlinear Programming Midterm Exam Instructor: Dr. Kartik Sivaramakrishnan INSTRUCTIONS 1. Please write your name and student number clearly on the front page of the exam. 2. The exam is

More information

Math 232: Final Exam Version A Spring 2015 Instructor: Linda Green

Math 232: Final Exam Version A Spring 2015 Instructor: Linda Green Math 232: Final Exam Version A Spring 2015 Instructor: Linda Green Name: 1. Calculators are allowed. 2. You must show work for full and partial credit unless otherwise noted. In particular, you must evaluate

More information

Lecture 9: Modeling and motion models

Lecture 9: Modeling and motion models Sensor Fusion, 2014 Lecture 9: 1 Lecture 9: Modeling and motion models Whiteboard: Principles and some examples. Slides: Sampling formulas. Noise models. Standard motion models. Position as integrated

More information

Dynamics Final Report

Dynamics Final Report Dynamics Final Report Sophie Li and Hannah Wilk 1 Abstract We set out to develop a n-rigid body solver in MatLab. We wanted a user to define how many rigid bodies there are, and our system creates the

More information

Extra Credit 1: Problems

Extra Credit 1: Problems Extra Credit 1: Problems Due Friday, May 5, to your TA s mailbox Note: You may do either this assignment or Extra Credit 2, but not both. Note 2: In order to get credit for these problems, you must include

More information

Level 3 Physics, 2017

Level 3 Physics, 2017 91524 915240 3SUPERVISOR S Level 3 Physics, 2017 91524 Demonstrate understanding of mechanical systems 2.00 p.m. Monday 20 November 2017 Credits: Six Achievement Achievement with Merit Achievement with

More information

Review of physics concepts for Exam 3. April, 2019

Review of physics concepts for Exam 3. April, 2019 Review of physics concepts for Exam 3 April, 2019 Reminders: 1. The vector sum of all forces = (the total inertial mass ) *a 2. Gravity F = mg; E=mgh 3. Friction along a surface Ff = (friction coefficient)

More information

Coding for Digital Communication and Beyond Fall 2013 Anant Sahai MT 1

Coding for Digital Communication and Beyond Fall 2013 Anant Sahai MT 1 EECS 121 Coding for Digital Communication and Beyond Fall 2013 Anant Sahai MT 1 PRINT your student ID: PRINT AND SIGN your name:, (last) (first) (signature) PRINT your Unix account login: ee121- Prob.

More information

Calculus III - Exam 2- Answers. Summer A 2013

Calculus III - Exam 2- Answers. Summer A 2013 Calculus III - Exam 2- s. Summer A 2013 Instructions: Please show all your work in an organized manner. If the valid steps (reasoning) are not shown, the final answer does not carry any credits. Write

More information

Chapter 3 - RATE IN MECHANICAL SYSTEMS. Graphing Foldable /10

Chapter 3 - RATE IN MECHANICAL SYSTEMS. Graphing Foldable /10 1 NAME PERIOD Chapter 3 - RATE IN MECHANICAL SYSTEMS ACTIVITY LESSON DESCRIPTION SCORE/POINTS 1. NT FILL IN NOTE GUIDE SCORE /20 Graphing Foldable /10 2. TX PP. 122-135 WORKSHEET /53 3. MATH Math formula

More information

Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam!

Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Prüfung Regelungstechnik I (Control Systems I) Prof. Dr. Lino Guzzella 3.. 24 Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Do not mark up this translation aid -

More information

Topic 6 The Killers LEARNING OBJECTIVES. Topic 6. Circular Motion and Gravitation

Topic 6 The Killers LEARNING OBJECTIVES. Topic 6. Circular Motion and Gravitation Topic 6 Circular Motion and Gravitation LEARNING OBJECTIVES Topic 6 The Killers 1. Centripetal Force 2. Newton s Law of Gravitation 3. Gravitational Field Strength ROOKIE MISTAKE! Always remember. the

More information

Flat disk Hollow disk Solid sphere. Flat plate Hollow plate Solid block. n y n O O O

Flat disk Hollow disk Solid sphere. Flat plate Hollow plate Solid block. n y n O O O NAME ME161 Midterm. Icertify that Iupheld the Stanford Honor code during this exam Tuesday October 29, 22 1:15-2:45 p.m. ffl Print your name and sign the honor code statement ffl You may use your course

More information

Robotics I. Figure 1: Initial placement of a rigid thin rod of length L in an absolute reference frame.

Robotics I. Figure 1: Initial placement of a rigid thin rod of length L in an absolute reference frame. Robotics I September, 7 Exercise Consider the rigid body in Fig., a thin rod of length L. The rod will be rotated by an angle α around the z axis, then by an angle β around the resulting x axis, and finally

More information

AP Calculus BC Summer Assignment. Please show all work either in the margins or on separate paper. No credit will be given without supporting work.

AP Calculus BC Summer Assignment. Please show all work either in the margins or on separate paper. No credit will be given without supporting work. AP Calculus BC Summer Assignment These problems are essential practice for AP Calculus BC. Unlike AP Calculus AB, BC students need to also be quite familiar with polar and parametric equations, as well

More information

Final Exam April 21, a) No books, notes, or other such materials are permitted.

Final Exam April 21, a) No books, notes, or other such materials are permitted. Phys 5 Spring 004 Name: Final Exam April, 004 INSTRUCTIONS: a) No books, notes, or other such materials are permitted. b) You may use a calculator. c) You must solve all problems beginning with the equations

More information

EXAM # 3 PLEASE SHOW ALL WORK!

EXAM # 3 PLEASE SHOW ALL WORK! Stat 311, Summer 2018 Name EXAM # 3 PLEASE SHOW ALL WORK! Problem Points Grade 1 30 2 20 3 20 4 30 Total 100 1. A socioeconomic study analyzes two discrete random variables in a certain population of households

More information

Solutions to Old Final Exams (For Fall 2007)

Solutions to Old Final Exams (For Fall 2007) Solutions to Old Final Exams (For Fall 2007) CS 381 (Fall 2002, Fall 2004, Fall 2005, Fall 2006) Yogi Sharma Disclaimer: I, Yogi Sharma, do not claim these solution to be complete, or even to be absolutely

More information

DO NOT TURN PAGE TO START UNTIL TOLD TO DO SO.

DO NOT TURN PAGE TO START UNTIL TOLD TO DO SO. University of California at Berkeley Physics 7A Lecture 1 Professor Lin Spring 2006 Final Examination May 15, 2006, 12:30 PM 3:30 PM Print Name Signature Discussion Section # Discussion Section GSI Student

More information

Physics P201 D. Baxter/R. Heinz. EXAM #2 October 18, :00 9:00 PM INSTRUCTIONS

Physics P201 D. Baxter/R. Heinz. EXAM #2 October 18, :00 9:00 PM INSTRUCTIONS Seat # Physics P201 D. Baxter/R. Heinz EXAM #2 October 18, 2001 7:00 9:00 PM INSTRUCTIONS 1. Sit in SEAT # given above. 2. DO NOT OPEN THE EXAM UNTIL YOU ARE TOLD TO DO SO. 3. Print your name (last name

More information

Precalculations Individual Portion Correlation and Regression: Statistical Analysis of Trends

Precalculations Individual Portion Correlation and Regression: Statistical Analysis of Trends Name: Date of lab: Section number: M E 345. Lab 3 Precalculations Individual Portion Correlation and Regression: Statistical Analysis of Trends Precalculations Score (for instructor or TA use only): /

More information

(A) 10 m (B) 20 m (C) 25 m (D) 30 m (E) 40 m

(A) 10 m (B) 20 m (C) 25 m (D) 30 m (E) 40 m PSI AP Physics C Work and Energy (Algebra Based) Multiple Choice Questions (use g = 10 m/s 2 ) 1. A student throws a ball upwards from the ground level where gravitational potential energy is zero. At

More information

EE Homework 3 Due Date: 03 / 30 / Spring 2015

EE Homework 3 Due Date: 03 / 30 / Spring 2015 EE 476 - Homework 3 Due Date: 03 / 30 / 2015 Spring 2015 Exercise 1 (10 points). Consider the problem of two pulleys and a mass discussed in class. We solved a version of the problem where the mass was

More information

Problem Set Spring 2012

Problem Set Spring 2012 Problem Set 3 2.086 Spring 2012 Released: Tuesday, 13 March 2012 Due: Tuesday, 3 April, at 2:30 PM by hardcopy at the beginning of class. Note that no Matlab scripts need be uploaded to Stellar for this

More information

dt 2 x = r cos(θ) y = r sin(θ) r = x 2 + y 2 tan(θ) = y x A circle = πr 2

dt 2 x = r cos(θ) y = r sin(θ) r = x 2 + y 2 tan(θ) = y x A circle = πr 2 v = v i + at a dv dt = d2 x dt 2 A sphere = 4πr 2 x = x i + v i t + 1 2 at2 x = r cos(θ) V sphere = 4 3 πr3 v 2 = v 2 i + 2a x F = ma R = v2 sin(2θ) g y = r sin(θ) r = x 2 + y 2 tan(θ) = y x a c = v2 r

More information

Moon Project Handout. I: A Mental Model of the Sun, Moon, and Earth (Do in class.)

Moon Project Handout. I: A Mental Model of the Sun, Moon, and Earth (Do in class.) Moon Project Handout Summary: You will recreate and interpret the geometric and timing measurements performed by the Ancient Greeks in order to determine the sizes of the Sun, Moon, and Earth and the distances

More information

Acceleration and rotation in a pendulum ride, measured using an iphone 4

Acceleration and rotation in a pendulum ride, measured using an iphone 4 F EATURES www.iop.org/journals/physed Acceleration and rotation in a pendulum ride, measured using an iphone 4 Ann-Marie Pendrill 1,2 and Johan Rohlén 1 1 Department of Physics, University of Gothenburg,

More information

General Definition of Torque, final. Lever Arm. General Definition of Torque 7/29/2010. Units of Chapter 10

General Definition of Torque, final. Lever Arm. General Definition of Torque 7/29/2010. Units of Chapter 10 Units of Chapter 10 Determining Moments of Inertia Rotational Kinetic Energy Rotational Plus Translational Motion; Rolling Why Does a Rolling Sphere Slow Down? General Definition of Torque, final Taking

More information

Lecture PowerPoints. Chapter 8 Physics: Principles with Applications, 6 th edition Giancoli

Lecture PowerPoints. Chapter 8 Physics: Principles with Applications, 6 th edition Giancoli Lecture PowerPoints Chapter 8 Physics: Principles with Applications, 6 th edition Giancoli 2005 Pearson Prentice Hall This work is protected by United States copyright laws and is provided solely for the

More information

EE 16B Final, December 13, Name: SID #:

EE 16B Final, December 13, Name: SID #: EE 16B Final, December 13, 2016 Name: SID #: Important Instructions: Show your work. An answer without explanation is not acceptable and does not guarantee any credit. Only the front pages will be scanned

More information

Classical Mechanics Ph.D. Qualifying Examination. 8 January, :00 to 12:00

Classical Mechanics Ph.D. Qualifying Examination. 8 January, :00 to 12:00 UNIVERSITY OF ILLINOIS AT CHICAGO DEPARTMENT OF PHYSICS Classical Mechanics Ph.D. Qualifying Examination 8 January, 2013 9:00 to 12:00 Full credit can be achieved from completely correct answers to 4 questions.

More information

On my honor as a Texas A&M University student, I will neither give nor receive unauthorized help on this exam.

On my honor as a Texas A&M University student, I will neither give nor receive unauthorized help on this exam. Physics 201, Exam 3 Name (printed) On my honor as a Texas A&M University student, I will neither give nor receive unauthorized help on this exam. Name (signed) The multiple-choice problems carry no partial

More information

Physics. Student Materials Advanced Higher. Tutorial Problems Mechanics HIGHER STILL. Spring 2000

Physics. Student Materials Advanced Higher. Tutorial Problems Mechanics HIGHER STILL. Spring 2000 Spring 2000 HIGHER STILL Physics Student Materials Advanced Higher Tutorial Problems Mechanics TUTORIAL 1 You will find tutorials on each topic. The fully worked out answers are available. The idea is

More information

Concepts in Physics Lab 9: Equipotential Lines

Concepts in Physics Lab 9: Equipotential Lines INTRODUCTION Concepts in Physics Lab 9: Equipotential Lines Taner Edis Fall 2018 Introduction We will play around with electrical energy, seeing how very abstract, invisible concepts like electrical energy

More information

Physics 240 Fall 2005: Exam #3. Please print your name: Please list your discussion section number: Please list your discussion instructor:

Physics 240 Fall 2005: Exam #3. Please print your name: Please list your discussion section number: Please list your discussion instructor: Physics 240 Fall 2005: Exam #3 Please print your name: Please list your discussion section number: Please list your discussion instructor: Form #1 Instructions 1. Fill in your name above 2. This will be

More information

Modeling nonlinear systems using multiple piecewise linear equations

Modeling nonlinear systems using multiple piecewise linear equations Nonlinear Analysis: Modelling and Control, 2010, Vol. 15, No. 4, 451 458 Modeling nonlinear systems using multiple piecewise linear equations G.K. Lowe, M.A. Zohdy Department of Electrical and Computer

More information