'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 103L Fall Test 2. Michael R. Gustafson II

Size: px
Start display at page:

Download "'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 103L Fall Test 2. Michael R. Gustafson II"

Transcription

1 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 103L Fall 2017 Test 2 Michael R. Gustafson II Name (please print) NET ID (please print): In keeping with the Community Standard, I have neither provided nor received any assistance on this test. I understand if it is later determined that I gave or received assistance, I will be brought before the Undergraduate Conduct Board and, if found responsible for academic dishonesty or academic contempt, fail the class. I also understand that I am not allowed to speak to anyone except the instructor about any aspect of this test until the instructor announces it is allowed. I understand if it is later determined that I did speak to another person about the test before the instructor said it was allowed, I will be brought before the Undergraduate Conduct Board and, if found responsible for academic dishonesty or academic contempt, fail the class. Signature: Notes You will be turning in each problem in a separate pile. Most of these problems will require working on separate pieces of paper - Make sure that you do not put work for more than any one problem on any one piece of paper. For this test, you will be turning in four different sets of work. Again, Please do not work on multiple problems on the same sheet of paper. Also - please do not put work for one problem on the back of another problem. Be sure your name and NET ID show up on every page of the test. If you are including work on extra sheets of paper, put your name and NET ID on each and be sure to staple them to the appropriate problem. Problems without names will incur at least a 25% penalty for the problem. This first page should have your name, NET ID, and signature on it. It should be stapled on top of and turned in with your submission for Problem I. You will not need and can not use a calculator on this test. For hand calculations you will instead show the set-up of the calculation you need to perform but will not reduce it. You can leave powers, roots, products, sums, differences, and quotients unevaluated - for example, (3)(2) + (8)(11) (6)(24) A = (8) 2 (4) 2 + (2) 2 (7) 2 should be left just like that. You will be asked to write several lines of code on this test. Make sure what you write is MATLAB code and not mathematics. Be very careful with any symbols you use. You do not need to put the honor code statement in your codes. The honor code statement on this page and your NET ID on each problem stands in for that. You do not need to number your lines of code. Please staple in the top left corner of the page. Also, please do not put work too close to the top left corner of the page!

2 Problem I: [25 pts.] This again? (1) Given the following matrices: M = [ ] N = [ ] Oh = Write the results of the following MATLAB commands in the spaces below. (a) A = M*Oh (f) F = M>1 (b) B = N. 2 (g) G = find(m>1) (c) C = N 2 (h) H = M(find(M>1)) (d) D = N(:) (i) I = [N N] (e) E = sum(oh) (j) J = N & N (2) Show what P and R would be after the following command: [P, R] = meshgrid([1 2 3], [4 5]) (3) Show what S, T, U, and V and would be after the following commands: S = [5 2 3; 1 6 8] T = 2; for U=S T=T+1; S(T)=T; V(T)=max(U); end

3 Problem II: [25 pts.] Where is everything? (1) Given the equation: and the two graphs: y(x) = e x x 2 + 8x 5 x y y x x which are of the same function but with two different domains, write MATLAB code to accomplish the tasks below. (a) Write code guaranteed to find the two positive values of x where y(x) = 0. Note that the root at x = 0 is not included in these two. Call these values x1 and x2 (b) Write code guaranteed to find the value and location of the local minimum of the function on the left side of each graph. Assign the value of the minimum to ymin and the location of the minimum to xminloc. (c) Write code guaranteed to find the value and location real global maximum value of the function. Assign the value of the minimum to ymax and the location of the minimum to xmaxloc. (d) From the graphs, you can see that y(x) = 2 at two locations. Write code guaranteed to find both and assign the locations to x2a and x2b from left to right, respectively. (2) Given the function of a surface: f(x,y) = x 2 + x y + y 2 3x + 2y + cos(x) + sin(y) (a) Generate a surface plot of f(x,y) as a function of x and y. x and y should span the domain from -8 to 8 and there should be 50 nodes in each direction. You do not need to label, title, or save this plot. (b) Determine which of the 2500 modes is closest to and find the x, y, f(x,y), and element values at that grid point. Display this information in a manner similar to the following (numerically incorrect) example (which uses %+0.3e for all scientific notation numbers and %0.0f for all integers, as do all in this problem): Max node: f(-7.674e+00,-7.347e+00) = e+02 at node 17 (c) Determine which of the 2500 nodes is closest to and find the x, y, and f(x,y) values at that grid point. Display this information in a manner similar to the following (numerically incorrect) example: Min node: f(+2.976e+00,-2.022e+00) = e+00 at node 1841 (d) Determine the exact location of the minimum of the f(x, y) function. Use the information gained above in (c) as an initial guess. Display this information in a manner similar to the following (numerically incorrect) example: Min val: f(+2.849e+00,-2.015e+00) = e+00 (e) Determine the S t value for the 2500 values of f(x,y) and store it in a variable called St.

4 Problem III: [25 pts.] Fall & Spring(s) (1) Assume you have the following equations for a system: Hr = Is + J Kr + Ls + M = 0 and assuming H through M are known constants while r and s are your unknowns, (a) Fill in the following framework for a linear algebra system (there are six total blanks): [A]{x} = {b} [ ]{ } { } r = s (b) By hand, determine a formula for the determinant of the coefficient matrix, A. (c) By hand, determine a formula for the determinant of the inverse of the coefficient matrix, A 1. (d) By hand, determine solutions to the vector of unknowns r and s in terms of known values H through M. (2) Three masses M i are held apart at (unknown) positions x i between two walls by a series of large springs with known spring constants K 1 through K 4. There are known external forces F i acting on each of the masses. x 1 x 2 x 3 F 1 F 2 F 3 M 1 M 2 M 3 K 1 K 2 K 3 K 4 The equilibrium equations for the positions of the masses as functions of the applied forces are: (K 1 + K 2 )x 1 = F 1 + K 2 x 2 (K 2 + K 3 )x 2 = F 2 + K 2 x 1 + K 3 x 3 (K 3 + K 4 )x 3 = F 3 + K 3 x 2 (a) Fill in the following framework for a linear algebra system that could be used to solve for the positions (x 1, x 2, and x 3 ); there are 12 total blanks: x 1 x 2 x 3 = (b) Assuming you know that K 1 =K 2 =K 3 =1000 and F 1 =F 2 =F 3 =2000, write code that will allow you to solve for and plot the values of x 2 for 200 linearly spaced values of K 4 between 500 and Give your graph proper axis labels and use a dashed blue line. You may assume the code clear; K1 = 1000; K2=1000; K3=1000; F1=2000; F2=2000; F3=2000; is already written. (c) Assume your system measurements have six significant figures. It turns out the condition number of your coefficient matrix, based on the 2-norm, is 5.05 when K 4 = What does this mean for the solutions to your linear algebra problem when K 4 = 2000?

5 Problem IV: [25 pts.] Under Pressure This problem is adapted from Chapra The dependent variable has been transformed to something called LP versus the original p. The Antoine equation describes the relation between vapor pressure and temperature for pure components as LP = A B C + T where LP is related to the pressure, T is temperature, and A, B, and C are component-specific constants. Use MATLAB to determine the best values for the constants for carbon monoxide based on the following measurements where you may assume the following lines of code are given: T = [ ]; LP = [ ]; Write the rest of the code to: (1) Determine the coefficients A, B, and C that give the mathematically best version of the Antoine equation for this data set. At the end of this part of the code, you should have variables named A, B, and C. Of the three coefficients, in looking at how the formula changes with T, you should be able to come up with a guess for A based on the data. Describe your process for making a guess of A. Use 50 as an initial guess for B and -2 as an initial guess for C. (2) Determine the r 2 value for this fit and call it r2a for Antoine. (3) Ask the user for a single integer called Ord between 1 and 8. Keep asking the user for an input until the user correctly gives a single integer with a value between 1 and 8 (inclusive). (4) Determine the coefficients for a polynomial fit or order Ord. Store them in a variable called Coefs2. (5) Determine the r 2 value for this polynomial fit and call it r2p for Polynomial. (6) Make a graph that has the original data points as black circles, the Antoine equation model as a solid blue line that uses 200 values of T that span the domain of the original data set, and the polynomial fit as a dashed red line that also uses 200 values of T that span the domain of the original data set. Put proper axis labels on this graph along with a meaningful legend. (7) Print a statement about which fit was mathematically better. Your program should either say: Antoine fit is better: r2=9.993e-01 vs e-01 or Order 4 polynomial fit is better: r2=9.997e-01 vs e-01 where you need to indicate the order of the polynomial, or Fits have same r2=9.993e-01 depending on which is better or if they are the same. Use %0.0f for integers and %0.3e for other numbers.

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 103L Fall Test 2 Solutions. Michael R. Gustafson II

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 103L Fall Test 2 Solutions. Michael R. Gustafson II 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 103L Fall 2017 Test 2 Solutions Michael R. Gustafson II Name (please print) NET ID (please print): In keeping with the Community Standard, I have neither

More information

Test 2 Solutions - Python Edition

Test 2 Solutions - Python Edition 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 103L Fall 2017 Test 2 Solutions - Python Edition Michael R. Gustafson II Name (please print) NET ID (please print): In keeping with the Community Standard,

More information

Test 2 - Python Edition

Test 2 - Python Edition 'XNH8QLYHUVLW\ (GPXQG7UDWW-U6FKRRORI(QJLQHHULQJ EGR 10L Spring 2018 Test 2 - Python Edition Shaundra B. Daily & Michael R. Gustafson II Name (please print): NetID (please print): In keeping with the Community

More information

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 224 Spring Test II. Michael R. Gustafson II

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 224 Spring Test II. Michael R. Gustafson II 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 224 Spring 2017 Test II Michael R. Gustafson II Name (please print) In keeping with the Community Standard, I have neither provided nor received any

More information

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. ECE 110 Fall Test I. Michael R. Gustafson II

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. ECE 110 Fall Test I. Michael R. Gustafson II 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ ECE 110 Fall 2012 Test I Michael R. Gustafson II Name (please print) In keeping with the Community Standard, I have neither provided nor received any assistance

More information

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 224 Spring Test II. Michael R. Gustafson II

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 224 Spring Test II. Michael R. Gustafson II 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 224 Spring 2018 Test II Michael R. Gustafson II Name (please print) In keeping with the Community Standard, I have neither provided nor received any

More information

Test II Michael R. Gustafson II

Test II Michael R. Gustafson II 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 224 Spring 2016 Test II Michael R. Gustafson II Name (please print) In keeping with the Community Standard, I have neither provided nor received any

More information

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. ECE 110 Fall Test II. Michael R. Gustafson II

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. ECE 110 Fall Test II. Michael R. Gustafson II 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ ECE 110 Fall 2016 Test II Michael R. Gustafson II Name (please print) In keeping with the Community Standard, I have neither provided nor received any assistance

More information

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 53L Fall Test I. Rebecca A. Simmons & Michael R. Gustafson II

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 53L Fall Test I. Rebecca A. Simmons & Michael R. Gustafson II 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 53L Fall 2008 Test I Rebecca A. Simmons & Michael R. Gustafson II Name (please print) In keeping with the Community Standard, I have neither provided

More information

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 53L Fall Test III. Rebecca A. Simmons & Michael R. Gustafson II

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 53L Fall Test III. Rebecca A. Simmons & Michael R. Gustafson II 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 53L Fall 2008 Test III Rebecca A. Simmons & Michael R. Gustafson II Name (please print) In keeping with the Community Standard, I have neither provided

More information

Lynch 2017 Page 1 of 5. Math 150, Fall 2017 Exam 2 Form A Multiple Choice

Lynch 2017 Page 1 of 5. Math 150, Fall 2017 Exam 2 Form A Multiple Choice Lynch 2017 Page 1 of 5 Math 150, Fall 2017 Exam 2 Form A Multiple Choice Last Name: First Name: Section Number: Student ID number: Directions: 1. No calculators, cell phones, or other electronic devices

More information

Lynch, October 2016 Page 1 of 5. Math 150, Fall 2016 Exam 2 Form A Multiple Choice Sections 3A-5A

Lynch, October 2016 Page 1 of 5. Math 150, Fall 2016 Exam 2 Form A Multiple Choice Sections 3A-5A Lynch, October 2016 Page 1 of 5 Math 150, Fall 2016 Exam 2 Form A Multiple Choice Sections 3A-5A Last Name: First Name: Section Number: Student ID number: Directions: 1. No calculators, cell phones, or

More information

Lynch 2017 Page 1 of 5. Math 150, Fall 2017 Exam 1 Form A Multiple Choice

Lynch 2017 Page 1 of 5. Math 150, Fall 2017 Exam 1 Form A Multiple Choice Lynch 017 Page 1 of 5 Math 150, Fall 017 Exam 1 Form A Multiple Choice Last Name: First Name: Section Number: Student ID number: Directions: 1. No calculators, cell phones, or other electronic devices

More information

MthSc 103 Test 3 Spring 2009 Version A UC , 3.1, 3.2. Student s Printed Name:

MthSc 103 Test 3 Spring 2009 Version A UC , 3.1, 3.2. Student s Printed Name: Student s Printed Name: Instructor: CUID: Section # : Read each question very carefully. You are NOT permitted to use a calculator on any portion of this test. You are not allowed to use any textbook,

More information

MA 262, Fall 2017, Final Version 01(Green)

MA 262, Fall 2017, Final Version 01(Green) INSTRUCTIONS MA 262, Fall 2017, Final Version 01(Green) (1) Switch off your phone upon entering the exam room. (2) Do not open the exam booklet until you are instructed to do so. (3) Before you open the

More information

Math 51 Second Exam May 18, 2017

Math 51 Second Exam May 18, 2017 Math 51 Second Exam May 18, 2017 Name: SUNet ID: ID #: Complete the following problems. In order to receive full credit, please show all of your work and justify your answers. You do not need to simplify

More information

MATH 1040 Test 2 Spring 2016 Version A QP 16, 17, 20, 25, Calc 1.5, 1.6, , App D. Student s Printed Name:

MATH 1040 Test 2 Spring 2016 Version A QP 16, 17, 20, 25, Calc 1.5, 1.6, , App D. Student s Printed Name: Student s Printed Name: Instructor: CUID: Section # : You are not permitted to use a calculator on any portion of this test. You are not allowed to use any textbook, notes, cell phone, laptop, PDA, or

More information

Student s Printed Name:

Student s Printed Name: Student s Printed Name: Instructor: CUID: Section # : You are not permitted to use a calculator on any portion of this test. You are not allowed to use any textbook, notes, cell phone, laptop, PDA, smart

More information

Math 51 Midterm 1 July 6, 2016

Math 51 Midterm 1 July 6, 2016 Math 51 Midterm 1 July 6, 2016 Name: SUID#: Circle your section: Section 01 Section 02 (1:30-2:50PM) (3:00-4:20PM) Complete the following problems. In order to receive full credit, please show all of your

More information

Math 1: Calculus with Algebra Midterm 2 Thursday, October 29. Circle your section number: 1 Freund 2 DeFord

Math 1: Calculus with Algebra Midterm 2 Thursday, October 29. Circle your section number: 1 Freund 2 DeFord Math 1: Calculus with Algebra Midterm 2 Thursday, October 29 Name: Circle your section number: 1 Freund 2 DeFord Please read the following instructions before starting the exam: This exam is closed book,

More information

MthSc 107 Test 1 Spring 2013 Version A Student s Printed Name: CUID:

MthSc 107 Test 1 Spring 2013 Version A Student s Printed Name: CUID: Student s Printed Name: CUID: Instructor: Section # : You are not permitted to use a calculator on any portion of this test. You are not allowed to use any textbook, notes, cell phone, laptop, PDA, or

More information

Student s Printed Name: _Key_& Grading Guidelines CUID:

Student s Printed Name: _Key_& Grading Guidelines CUID: Student s Printed Name: _Key_& Grading Guidelines CUID: Instructor: Section # : You are not permitted to use a calculator on any part of this test. You are not allowed to use any textbook, notes, cell

More information

Version B QP1-14,18-24, Calc ,App B-D

Version B QP1-14,18-24, Calc ,App B-D MATH 00 Test Fall 06 QP-,8-, Calc.-.,App B-D Student s Printed Name: _Key_& Grading Guidelines CUID: Instructor: Section # : You are not permitted to use a calculator on any portion of this test. You are

More information

Math 41 First Exam October 12, 2010

Math 41 First Exam October 12, 2010 Math 41 First Exam October 12, 2010 Name: SUID#: Circle your section: Olena Bormashenko Ulrik Buchholtz John Jiang Michael Lipnowski Jonathan Lee 03 (11-11:50am) 07 (10-10:50am) 02 (1:15-2:05pm) 04 (1:15-2:05pm)

More information

11 /2 12 /2 13 /6 14 /14 15 /8 16 /8 17 /25 18 /2 19 /4 20 /8

11 /2 12 /2 13 /6 14 /14 15 /8 16 /8 17 /25 18 /2 19 /4 20 /8 MAC 1147 Exam #1a Answer Key Name: Answer Key ID# Summer 2012 HONOR CODE: On my honor, I have neither given nor received any aid on this examination. Signature: Instructions: Do all scratch work on the

More information

Physics Exam I

Physics Exam I Physics 208 - Exam I Spring 2018 (all sections) - February 12, 2018. Please fill out the information and read the instructions below, but do not open the exam until told to do so. Rules of the exam: 1.

More information

Math 308 Spring Midterm Answers May 6, 2013

Math 308 Spring Midterm Answers May 6, 2013 Math 38 Spring Midterm Answers May 6, 23 Instructions. Part A consists of questions that require a short answer. There is no partial credit and no need to show your work. In Part A you get 2 points per

More information

Student s Printed Name: _Key

Student s Printed Name: _Key Student s Printed Name: _Key Instructor: CUID: Section # : You are not permitted to use a calculator on any part of this test. You are not allowed to use any textbook, notes, cell phone, laptop, PDA, or

More information

Math 19 Practice Exam 2B, Winter 2011

Math 19 Practice Exam 2B, Winter 2011 Math 19 Practice Exam 2B, Winter 2011 Name: SUID#: Complete the following problems. In order to receive full credit, please show all of your work and justify your answers. You do not need to simplify your

More information

Pre-Calculus Exam 2009 University of Houston Math Contest. Name: School: There is no penalty for guessing.

Pre-Calculus Exam 2009 University of Houston Math Contest. Name: School: There is no penalty for guessing. Pre-Calculus Exam 009 University of Houston Math Contest Name: School: Please read the questions carefully and give a clear indication of your answer on each question. There is no penalty for guessing.

More information

Without fully opening the exam, check that you have pages 1 through 11.

Without fully opening the exam, check that you have pages 1 through 11. MTH 33 Solutions to Final Exam May, 8 Name: Section: Recitation Instructor: INSTRUCTIONS Fill in your name, etc. on this first page. Without fully opening the exam, check that you have pages through. Show

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

Math 41 Second Exam November 4, 2010

Math 41 Second Exam November 4, 2010 Math 41 Second Exam November 4, 2010 Name: SUID#: Circle your section: Olena Bormashenko Ulrik Buchholtz John Jiang Michael Lipnowski Jonathan Lee 03 (11-11:50am) 07 (10-10:50am) 02 (1:15-2:05pm) 04 (1:15-2:05pm)

More information

STUDENT NAME: STUDENT SIGNATURE: STUDENT ID NUMBER: SECTION NUMBER RECITATION INSTRUCTOR:

STUDENT NAME: STUDENT SIGNATURE: STUDENT ID NUMBER: SECTION NUMBER RECITATION INSTRUCTOR: MA262 EXAM I SPRING 2016 FEBRUARY 25, 2016 TEST NUMBER 01 INSTRUCTIONS: 1. Do not open the exam booklet until you are instructed to do so. 2. Before you open the booklet fill in the information below and

More information

Math 1020 TEST 3 VERSION A Spring 2017

Math 1020 TEST 3 VERSION A Spring 2017 Printed Name: Section #: Instructor: Please do not ask questions during this eam. If you consider a question to be ambiguous, state your assumptions in the margin and do the best you can to provide the

More information

MthSc 107 Test 1 Spring 2013 Version A Student s Printed Name: CUID:

MthSc 107 Test 1 Spring 2013 Version A Student s Printed Name: CUID: Student s Printed Name: CUID: Instructor: Section # : You are not permitted to use a calculator on any portion of this test. You are not allowed to use any textbook, notes, cell phone, laptop, PDA, or

More information

Math 51 First Exam October 19, 2017

Math 51 First Exam October 19, 2017 Math 5 First Exam October 9, 27 Name: SUNet ID: ID #: Complete the following problems. In order to receive full credit, please show all of your work and justify your answers. You do not need to simplify

More information

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

More information

Name: Date: 3. Which is more concentrated (circle one.): 14.0 ppm CO 2 OR ppb CO 2?

Name: Date: 3. Which is more concentrated (circle one.): 14.0 ppm CO 2 OR ppb CO 2? Name: Date: There are 25 questions totaling 90 points (scored out of 100 pts with Internship Activity). PLEASE look over the entire examination (8 pages total) BEFORE you begin to ensure your packet is

More information

ECE 204 Numerical Methods for Computer Engineers MIDTERM EXAMINATION /8:00-9:30

ECE 204 Numerical Methods for Computer Engineers MIDTERM EXAMINATION /8:00-9:30 ECE 204 Numerical Methods for Computer Engineers MIDTERM EXAMINATION 2007-10-23/8:00-9:30 The examination is out of 67 marks. Instructions: No aides. Write your name and student ID number on each booklet.

More information

Page Points Score Total: 100

Page Points Score Total: 100 Math 1130 Spring 2019 Sample Exam 1c 1/31/19 Name (Print): Username.#: Lecturer: Rec. Instructor: Rec. Time: This exam contains 8 pages (including this cover page) and 7 problems. Check to see if any pages

More information

MAT 145 Test #4: 100 points

MAT 145 Test #4: 100 points MAT 145 Test #4: 100 points Name Calculator Used Score Each statement (1) through (4) is FALSE, meaning that it is not always true. For each false statement, either (i) provide a counterexample that disproves

More information

STUDENT NAME: STUDENT SIGNATURE: STUDENT ID NUMBER: SECTION NUMBER RECITATION INSTRUCTOR:

STUDENT NAME: STUDENT SIGNATURE: STUDENT ID NUMBER: SECTION NUMBER RECITATION INSTRUCTOR: MA262 FINAL EXAM SPRING 2016 MAY 2, 2016 TEST NUMBER 01 INSTRUCTIONS: 1. Do not open the exam booklet until you are instructed to do so. 2. Before you open the booklet fill in the information below and

More information

Student s Printed Name: _KEY Grading Guidelines CUID:

Student s Printed Name: _KEY Grading Guidelines CUID: Student s Printed Name: _KEY Grading Guidelines CUID: Instructor: Section # : You are not permitted to use a calculator on any portion of this test. You are not allowed to use any textbook, notes, cell

More information

MATH 099 Name (please print) FINAL EXAM - FORM A Winter 2015 Instructor Score

MATH 099 Name (please print) FINAL EXAM - FORM A Winter 2015 Instructor Score MATH 099 Name (please print) Winter 2015 Instructor Score Point-values for each problem are shown at the right in parentheses. PART I: SIMPLIFY AS MUCH AS POSSIBLE: 1. ( 16 c 12 ) 3 4 1. (2) 2. 52 m "7

More information

Math 2114 Common Final Exam May 13, 2015 Form A

Math 2114 Common Final Exam May 13, 2015 Form A Math 4 Common Final Exam May 3, 5 Form A Instructions: Using a # pencil only, write your name and your instructor s name in the blanks provided. Write your student ID number and your CRN in the blanks

More information

Math 308 Midterm Answers and Comments July 18, Part A. Short answer questions

Math 308 Midterm Answers and Comments July 18, Part A. Short answer questions Math 308 Midterm Answers and Comments July 18, 2011 Part A. Short answer questions (1) Compute the determinant of the matrix a 3 3 1 1 2. 1 a 3 The determinant is 2a 2 12. Comments: Everyone seemed to

More information

LINEAR ALGEBRA KNOWLEDGE SURVEY

LINEAR ALGEBRA KNOWLEDGE SURVEY LINEAR ALGEBRA KNOWLEDGE SURVEY Instructions: This is a Knowledge Survey. For this assignment, I am only interested in your level of confidence about your ability to do the tasks on the following pages.

More information

LHS Algebra Pre-Test

LHS Algebra Pre-Test Your Name Teacher Block Grade (please circle): 9 10 11 12 Course level (please circle): Honors Level 1 Instructions LHS Algebra Pre-Test The purpose of this test is to see whether you know Algebra 1 well

More information

MTH 234 Exam 1 February 20th, Without fully opening the exam, check that you have pages 1 through 11.

MTH 234 Exam 1 February 20th, Without fully opening the exam, check that you have pages 1 through 11. Name: Section: Recitation Instructor: INSTRUCTIONS Fill in your name, etc. on this first page. Without fully opening the exam, check that you have pages 1 through 11. Show all your work on the standard

More information

Test 3 - Answer Key Version B

Test 3 - Answer Key Version B Student s Printed Name: Instructor: CUID: Section: Instructions: You are not permitted to use a calculator on any portion of this test. You are not allowed to use any textbook, notes, cell phone, laptop,

More information

Math 1020 ANSWER KEY TEST 3 VERSION A Fall 2016

Math 1020 ANSWER KEY TEST 3 VERSION A Fall 2016 Printed Name: Section #: Instructor: Please do not ask questions during this eam. If you consider a question to be ambiguous, state your assumptions in the margin and do the best you can to provide the

More information

MATH 1070 Test 3 Spring 2015 Version A , 5.1, 5.2. Student s Printed Name: Key_&_Grading Guidelines CUID:

MATH 1070 Test 3 Spring 2015 Version A , 5.1, 5.2. Student s Printed Name: Key_&_Grading Guidelines CUID: MATH 00 Test Spring 05 Student s Printed Name: Key_&_Grading Guidelines CUID: Instructor: Section # : You are not permitted to use a calculator on any part of this test. You are not allowed to use any

More information

Test 3 Version A. On my honor, I have neither given nor received inappropriate or unauthorized information at any time before or during this test.

Test 3 Version A. On my honor, I have neither given nor received inappropriate or unauthorized information at any time before or during this test. Student s Printed Name: Instructor: CUID: Section: Instructions: You are not permitted to use a calculator on any portion of this test. You are not allowed to use any textbook, notes, cell phone, laptop,

More information

Physics Exam I

Physics Exam I Physics 208 - Exam I Fall 2017 (all sections) September 25 th, 2017. Please fill out the information and read the instructions below, but do not open the exam until told to do so. Rules of the exam: 1.

More information

Without fully opening the exam, check that you have pages 1 through 11.

Without fully opening the exam, check that you have pages 1 through 11. Name: Section: Recitation Instructor: INSTRUCTIONS Fill in your name, etc. on this first page. Without fully opening the exam, check that you have pages 1 through 11. Show all your work on the standard

More information

Physics Grading Sheet.

Physics Grading Sheet. Physics - Grading Sheet. Dept. of Physics and Astronomy. TAMU. Marking Instructions Fill oval completely Erase cleanly Students Fill Only this information. First Name: Last Name:. Section:. Clearly hand-write

More information

1.1 Functions and Their Representations

1.1 Functions and Their Representations Arkansas Tech University MATH 2914: Calculus I Dr. Marcel B. Finan 1.1 Functions and Their Representations Functions play a crucial role in mathematics. A function describes how one quantity depends on

More information

2. To receive credit on any problem, you must show work that explains how you obtained your answer or you must explain how you obtained your answer.

2. To receive credit on any problem, you must show work that explains how you obtained your answer or you must explain how you obtained your answer. Math 50, Fall 2011 Test 3 PRINT your name on the back of the test. Directions 1. Time limit: 1 hour 50 minutes. 2. To receive credit on any problem, you must show work that explains how you obtained your

More information

MATH 1070 Test 1 Spring 2014 Version A Calc Student s Printed Name: Key & Grading Guidelines CUID:

MATH 1070 Test 1 Spring 2014 Version A Calc Student s Printed Name: Key & Grading Guidelines CUID: Student s Printed Name: Key & Grading Guidelines CUID: Instructor: Section # : You are not permitted to use a calculator on any portion of this test. You are not allowed to use any textbook, notes, cell

More information

Test 3 Version A. On my honor, I have neither given nor received inappropriate or unauthorized information at any time before or during this test.

Test 3 Version A. On my honor, I have neither given nor received inappropriate or unauthorized information at any time before or during this test. Student s Printed Name: Instructor: CUID: Section: Instructions: You are not permitted to use a calculator on any portion of this test. You are not allowed to use any textbook, notes, cell phone, laptop,

More information

Without fully opening the exam, check that you have pages 1 through 11.

Without fully opening the exam, check that you have pages 1 through 11. Name: Section: Recitation Instructor: INSTRUCTIONS Fill in your name, etc. on this first page. Without fully opening the exam, check that you have pages through. Show all your work on the standard response

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

1 Introduction & Objective

1 Introduction & Objective Signal Processing First Lab 13: Numerical Evaluation of Fourier Series Pre-Lab and Warm-Up: You should read at least the Pre-Lab and Warm-up sections of this lab assignment and go over all exercises in

More information

MATH 1241 Common Final Exam Fall 2010

MATH 1241 Common Final Exam Fall 2010 MATH 1241 Common Final Exam Fall 2010 Please print the following information: Name: Instructor: Student ID: Section/Time: The MATH 1241 Final Exam consists of three parts. You have three hours for the

More information

Total 100

Total 100 MATH 112 Final Exam Spring 2016 Name Student ID # Section HONOR STATEMENT I affirm that my work upholds the highest standards of honesty and academic integrity at the University of Washington, and that

More information

Algebra 2. Chapter 1 Test Review and Chapter 1 Test Information. Test Information. Test Question Rubric

Algebra 2. Chapter 1 Test Review and Chapter 1 Test Information. Test Information. Test Question Rubric Algebra 2 Chapter 1 Test Review and Chapter 1 Test Information Test Information 24 Short Answer Questions (same type of questions as shown on both test reviews) Total Points possible 100 points 4 points

More information

Please do not start working until instructed to do so. You have 50 minutes. You must show your work to receive full credit. Calculators are OK.

Please do not start working until instructed to do so. You have 50 minutes. You must show your work to receive full credit. Calculators are OK. Loyola University Chicago Math 131, Section 009, Fall 2008 Midterm 2 Name (print): Signature: Please do not start working until instructed to do so. You have 50 minutes. You must show your work to receive

More information

Physics 218 Exam I. Spring 2018 (all UP sections) February 19 th, 2018

Physics 218 Exam I. Spring 2018 (all UP sections) February 19 th, 2018 Physics 218 Exam I Spring 2018 (all UP sections) February 19 th, 2018 Rules of the exam: Please fill out the information and read the instructions below, but do not open the exam until told to do so. 1.

More information

Student s Printed Name:

Student s Printed Name: MATH 1060 Test 1 Fall 018 Calculus of One Variable I Version B KEY Sections 1.3 3. Student s Printed Name: Instructor: XID: C Section: No questions will be answered during this eam. If you consider a question

More information

Without fully opening the exam, check that you have pages 1 through 12.

Without fully opening the exam, check that you have pages 1 through 12. Name: Section: Recitation Instructor: INSTRUCTIONS Fill in your name, etc. on this first page. Without fully opening the exam, check that you have pages 1 through 12. Show all your work on the standard

More information

Version A QP1-14,18-24, Calc ,App B-D

Version A QP1-14,18-24, Calc ,App B-D MATH 100 Test 1 Fall 016 QP1-1,18-, Calc1.1-1.3,App B-D Student s Printed Name: Instructor: CUID: Section # : You are not permitted to use a calculator on any portion of this test. You are not allowed

More information

Student s Printed Name: _ Key _&_Grading Guidelines CUID:

Student s Printed Name: _ Key _&_Grading Guidelines CUID: MthSc 7 Test Spring Version A.., 6. Student s Printed Name: _ Key _&_Grading Guidelines CUID: Instructor: Section # : You are not permitted to use a calculator on any portion of this test. You are not

More information

Page: Total Points: Score:

Page: Total Points: Score: Math 1130 Spring 2019 Sample Final B 4/29/19 Name (Print): Username.#: Lecturer: Rec. Instructor: Rec. Time: This exam contains 14 pages (including this cover page) and 12 problems. Check to see if any

More information

On my honor, I have neither given nor received unauthorized aid on this examination.

On my honor, I have neither given nor received unauthorized aid on this examination. Instructor(s): Kumar/Stewart PHYSIS DEPRTMENT PHY 05 Exam 1 September 7, 011 Name (print, last first): Signature: On my honor, I have neither given nor received unauthorized aid on this examination. YOUR

More information

IMPORTANT Read these directions carefully:

IMPORTANT Read these directions carefully: Physics 208: Electricity and Magnetism Common Exam 2, October 17 th 2016 Print your name neatly: First name: Last name: Sign your name: Please fill in your Student ID number (UIN): _ - - Your classroom

More information

Test 2 - Answer Key Version A

Test 2 - Answer Key Version A MATH 8 Student s Printed Name: Instructor: Test - Answer Key Spring 6 8. - 8.3,. -. CUID: Section: Instructions: You are not permitted to use a calculator on any portion of this test. You are not allowed

More information

Page Points Score Total: 100

Page Points Score Total: 100 Math 1130 Spring 2019 Sample Midterm 3c 4/11/19 Name (Print): Username.#: Lecturer: Rec. Instructor: Rec. Time: This exam contains 10 pages (including this cover page) and 10 problems. Check to see if

More information

Math 41 First Exam October 15, 2013

Math 41 First Exam October 15, 2013 Math 41 First Exam October 15, 2013 Name: SUID#: Circle your section: Valentin Buciumas Jafar Jafarov Jesse Madnick Alexandra Musat Amy Pang 02 (1:15-2:05pm) 08 (10-10:50am) 03 (11-11:50am) 06 (9-9:50am)

More information

Student s Printed Name: KEY_&_Grading Guidelines_CUID:

Student s Printed Name: KEY_&_Grading Guidelines_CUID: Student s Printed Name: KEY_&_Grading Guidelines_CUID: Instructor: Section # : You are not permitted to use a calculator on any portion of this test. You are not allowed to use any textbook, notes, cell

More information

ORF 363/COS 323 Final Exam, Fall 2016

ORF 363/COS 323 Final Exam, Fall 2016 Name: Princeton University Instructor: A.A. Ahmadi ORF 363/COS 323 Final Exam, Fall 2016 January 18, 2017 AIs: B. El Khadir, G. Hall, Z. Li, K. Wang, J. Ye, J. Zhang 1. Please write out and sign the following

More information

Without fully opening the exam, check that you have pages 1 through 11.

Without fully opening the exam, check that you have pages 1 through 11. Name: Section: Recitation Instructor: INSTRUCTIONS Fill in your name, etc. on this first page. Without fully opening the exam, check that you have pages through. Show all your work on the standard response

More information

Spring 2018 Exam 2 MARK BOX HAND IN PART NAME: PIN: INSTRUCTIONS

Spring 2018 Exam 2 MARK BOX HAND IN PART NAME: PIN: INSTRUCTIONS Spring 208 Exam 2 problem MARK BOX points HAND IN PART 0 0 4 2-5 56=4x4 6 0 7 0 NAME: PIN: % 00 INSTRUCTIONS This exam comes in two parts () HAND IN PART Hand in only this part (2) STATEMENT OF MULTIPLE

More information

Reduction to the associated homogeneous system via a particular solution

Reduction to the associated homogeneous system via a particular solution June PURDUE UNIVERSITY Study Guide for the Credit Exam in (MA 5) Linear Algebra This study guide describes briefly the course materials to be covered in MA 5. In order to be qualified for the credit, one

More information

MAT Calculus for Engineers I EXAM #3

MAT Calculus for Engineers I EXAM #3 MAT 65 - Calculus for Engineers I EXAM #3 Instructor: Liu, Hao Honor Statement By signing below you conrm that you have neither given nor received any unauthorized assistance on this exam. This includes

More information

On my honor, I have neither given nor received unauthorized aid on this examination.

On my honor, I have neither given nor received unauthorized aid on this examination. Instructor(s): Profs. D. Reitze, H. Chan PHYSICS DEPARTMENT PHY 2053 Exam 2 April 2, 2009 Name (print, last first): Signature: On my honor, I have neither given nor received unauthorized aid on this examination.

More information

MATH 251 MATH 251: Multivariate Calculus MATH 251 SPRING 2010 EXAM-I SPRING 2010 EXAM-I EXAMINATION COVER PAGE Professor Moseley

MATH 251 MATH 251: Multivariate Calculus MATH 251 SPRING 2010 EXAM-I SPRING 2010 EXAM-I EXAMINATION COVER PAGE Professor Moseley MATH 51 MATH 51: Multivariate Calculus MATH 51 SPRING 010 EXAM-I SPRING 010 EXAM-I EXAMINATION COVER PAGE Professor Moseley PRINT NAME ( ) Last Name, First Name MI (What you wish to be called) ID # EXAM

More information

Physics Exam II

Physics Exam II Physics 208 - Exam II Spring 2018 (all sections) - March 5, 2018. Please fill out the information and read the instructions below, but do not open the exam until told to do so. Rules of the exam: 1. You

More information

MATH 251 MATH 251: Multivariate Calculus MATH 251 FALL 2009 EXAM-I FALL 2009 EXAM-I EXAMINATION COVER PAGE Professor Moseley

MATH 251 MATH 251: Multivariate Calculus MATH 251 FALL 2009 EXAM-I FALL 2009 EXAM-I EXAMINATION COVER PAGE Professor Moseley MATH 251 MATH 251: Multivariate Calculus MATH 251 FALL 2009 EXAM-I FALL 2009 EXAM-I EXAMINATION COVER PAGE Professor Moseley PRINT NAME ( ) Last Name, First Name MI (What you wish to be called) ID # EXAM

More information

Assignment 6, Math 575A

Assignment 6, Math 575A Assignment 6, Math 575A Part I Matlab Section: MATLAB has special functions to deal with polynomials. Using these commands is usually recommended, since they make the code easier to write and understand

More information

Problem Point Value Points

Problem Point Value Points Math 70 TUFTS UNIVERSITY October 12, 2015 Linear Algebra Department of Mathematics Sections 1 and 2 Exam I Instructions: No notes or books are allowed. All calculators, cell phones, or other electronic

More information

Name: Math 1120, Final. December 12, Net id: PLACE AN X IN THE BOX TO INDICATE YOUR SECTION

Name: Math 1120, Final. December 12, Net id: PLACE AN X IN THE BOX TO INDICATE YOUR SECTION Math 1120, Final December 12, 2017 Name: Net id: PLACE AN X IN THE BOX TO INDICATE YOUR SECTION Ian Lizarraga MWF 8:00 8:50 Ian Lizarraga MWF 9:05 9:55 Swee Hong Chan MWF 12:20 1:10 Teddy Einstein MWF

More information

PHYSICS 222 Fall 2009 EXAM 1: October 1, :00pm 10:00pm

PHYSICS 222 Fall 2009 EXAM 1: October 1, :00pm 10:00pm PHYSICS 222 Fall 2009 EXAM 1: October 1, 2009 8:00pm 10:00pm Name (printed): Recitation Instructor: Section # INSTRUCTIONS: This exam contains 25 multiple-choice questions, plus two extra-credit questions,

More information

Student s Printed Name:

Student s Printed Name: Student s Printed Name: Instructor: CUID: Section # : You are not permitted to use a calculator on any part of this test. You are not allowed to use any textbook, notes, cell phone, laptop, PDA, or any

More information

Physics 218 Comprehensive Exam

Physics 218 Comprehensive Exam Physics 218 Comprehensive Exam Spring 2018 (all UP sections) April 27 th, 2018 Rules of the exam: Please fill out the information and read the instructions below, but do not open the exam until told to

More information

Math 151, Fall 2018 Common Exam 1 Version A

Math 151, Fall 2018 Common Exam 1 Version A Math 151, Fall 018 Common Exam 1 Version A LAST NAME (print): FIRST NAME (print): INSTRUCTOR: STUDENT ID NUMBER: Directions: 1. No calculators, cell phones, or other electronic devices may be used, and

More information

Student s Printed Name:

Student s Printed Name: MATH 060 Test Fall 08 Calculus of One Variable I Version A KEY Sections.. Student s Printed Name: Instructor: XID: C Section: No questions will be answered during this eam. If ou consider a question to

More information

Without fully opening the exam, check that you have pages 1 through 11.

Without fully opening the exam, check that you have pages 1 through 11. Name: Section: (Recitation) Instructor: INSTRUCTIONS Fill in your name, etc. on this first page. Without fully opening the exam, check that you have pages through. Show all your work on the standard response

More information

MATH 152 FINAL EXAMINATION Spring Semester 2014

MATH 152 FINAL EXAMINATION Spring Semester 2014 Math 15 Final Eam Spring 1 MATH 15 FINAL EXAMINATION Spring Semester 1 NAME: RAW SCORE: Maimum raw score possible is 8. INSTRUCTOR: SECTION NUMBER: MAKE and MODEL of CALCULATOR USED: Answers are to be

More information

Physics 208, Spring 2015 Exam #1

Physics 208, Spring 2015 Exam #1 Physics 208, Spring 2015 Exam #1 A Name (Last, First): ID #: Section #: You have 75 minutes to complete the exam. Formulae are provided on a separate colored sheet. You may NOT use any other formula sheet.

More information