ENGR 1371 Computing for Engineers

Size: px
Start display at page:

Download "ENGR 1371 Computing for Engineers"

Transcription

1 Homework and In-Class Assignments Do the following problems from the textbook (2 nd edition) and/or other resources. These are tentative topics/dates and the instructor can change them if and when needed. Please check this document regularly as it will be periodically updated. Most recently updated on Assignments are for practice only and are not included in the grading policy (unless specified otherwise). Students do not need to submit completed assignments for grading except if one has questions/debugging problems. Solutions to select problems will be posted upon completion of corresponding topics. However, students are expected to work through all problems covered in the assignments. Please follow the instructions given with each problem. All MATLAB programs must be completed in accordance with the Programming Assignment Format. All calculations and other work done on paper must be completed in accordance with the Engineering Problem Solving Format. Date/Week of Chapter / Topic Programming Projects / Problems Chapter 1: Introduction to Computers and Programming Chapter 2: Getting Started with MATLAB None. 1. Write a script file (*.m file) to solve this problem. You throw a ball straight up in the air with an initial speed of 25 m/s [g = 9.8 m/ s 2 ]. Compute the tp, the time it takes to reach the highest point, and hp, the highest distance the ball rises from the release point. 2. Write a script file (*.m file) to solve this problem. A jet aircraft is flying 100 feet above a level plain at 600 mph. Suddenly the ground begins to rise at a 4 degree slope. Calculate tx, the amount of time the pilot has to raise the nose before the aircraft strikes the ground. 3. Write a script file (*.m file) to solve this problem. Page 1 of 19

2 After a very hard week at work, Kirk is driving to Helen, Georgia for a tubing trip (to cool off). He drives 200 miles north from his home to Timbuktu. He then turns right and travels 400 miles east to Helen. Write a script to compute the linear distance, d, from his home to Helen Chapter 3: Vectors and Arrays: Vectors - 1D Arrays 1. Problem 1 from textbook. Write a script file (*.m file) to solve this problem. 2. Write a script file (*.m file) to solve this problem. Vector manipulation is an integral part of MATLAB. Do the following exercises using the vector shown below to practice your skills. Notes: Do not hard code any of the answers for this problem. You cannot use iteration for any of the parts of this problem. Vec = [ ]; a. Create a new vector, veca, that is the same as the vector vec except that all of the 2s have been deleted. b. Create a new vector, vecr, that is the reverse of vec. c. Create a new vector, vecb, that swaps the first and second halves of vec, so vecb will contain the second half of vec followed by the first half of vec. d. Create a new vector, vecs, that contains all of the elements in the vec that are smaller than 45. The numbers should be in the same order as they were in vec. e. Create a new vector, vect, that contains true wherever vec is greater than 10 and false everywhere else f. Create a new vector, vec2, that contains every other element of vec starting with the second element. g. Create a new vector, vec3r, that contains every third element of vec starting from the last element and going toward the first element in vec. h. Create a new vector, vecf, that contains the indices of every element in vec that is equal to 2. Page 2 of 19

3 3. Problem 3 Consider the following vector in MATLAB: vec = [ ]; Which of the following will produce an error vec(6) = 1; vec(4) = [ ]; vec(0) = 1; vec( [4 5] ) =1; vec = [[6 [5] vec]]; 4. Problem 4 from textbook. 5. Write the commands that take a vector of numbers, a, and return a new vector b, containg the cubes of the positive numbers in a. If a particular numbers is negative, the 0 is put in its place Example [ ] will produce [ ] 6. Write a MATLAB program seriesln2.m to show that the sum of the infinite series: 1 converges to ln 2. n= 0 ( 2n + 1)( 2n + 2) a. Do this by computing the sum for n=0,1,2 50. b. Do this by computing the sum for n=0,1, c. Do this by computing the sum for n=0,1, d. Do not use a loop to solve this problem. e. Use the command sum. Page 3 of 19

4 Chapter 3: Vectors and Arrays: 2D Arrays Chapter 4: Execution Control: Conditional Structures 1. Type the following array and use MATLAB commands to answer the following questions A = a. Create a vector v consisting of the elements in the second column of A b. Create a vector w consisting of the elements in the second row of A. c. Create a 4 x 3 array B consisting of all elements in the second through fourth columns of A. d. Create a 3 x 4 array C consisting of all elements in the second through fourth rows of A. e. Create a 2 x 3 array D consisting of all elements in the first two rows and the last three columns of A. f. Find the maximum and minimum values in each column of A. g. Find the maximum and minimum values in each row of A. h. Find the maximum and minimum values in A. i. Sort each column and store the result in an array E. j. Sort each row and store the result in an array F. k. Add the elements in each column and store the result in an array G. l. Add the elements in each row and store the result in an array H. 1. Write a script that calculates the variable mode, the mode of transport used to travel a certain distance according to the following definition. You are given a variable called distance that represents the distance to be covered in feet (1 mile=5,280 feet). distance <= 2miles: Walk 2 miles < distance <=10 miles: Bicycle Page 4 of 19

5 10 miles <distance <=30 miles: MARTA distance> 30 miles: Delta Airlines 2. You are given a variable named sidecount specifying the number of sides on a geometric figure. You need a string containing the name of the shape according to the value of sidecount. Write the instruction to calculate the variable ans using the following table. Value of sidecount Value of ans Less than 3 Not a shape 3 Triangle 4 Quadrilateral 5 Pentagon Greater than 5 Other 3. You need a script to compute a normalilzed class average by the following steps: Given a vector of test scores, tests, first you compute a new vector, normtests, which will contain the test scores on a linear scale from 0 to 100. A zero still corresponds to a zero, and the highest test score will correspond to a 100. Test this script with: Tests = [ ]; Add to this script the calculation of the letter grade of the class average: Average> 90 => A 80<=average<90 => B 70<=average=80 => C 60<=average<70 =>D Average<60 => F Test your script with the following grade vectors: [ ] -> B [ ] -> C [ ] -> F Page 5 of 19

6 tests Hint: normtests = * 100. max(tests) Use MATLAB command mean to calculate average. 4. Suppose the legal drinking age is 21 in your state. Write and test a MATLAB program to determine whether a person is old enough to drink. Use the command input to create a user-input interface. 5. When a part is manufactured, the dimensions are usually specified with a tolerance. Assume that a certain part needs to be 5.4 cm long, plus or minus 0.1 cm. Write a MATLAB program to determine whether a part is within these specifications. 6. Many solid rocket motors consist of three stages. Once the 1 st stage burns out, it separates from the missile and the 2 nd stage lights. Then the 2 nd stage burns out and separates and the 3 rd stage lights. Finally, once the 3 rd stage burns out, it also separates from the missile. Assume that the following data approximately represent the times during which each stage burns: Stage 1: seconds; stage 2: seconds and stage 3: seconds. Write a MATLAB program to determine whether the missile is in stage 1, stage 2, stage3 or free flight Chapter 4: Execution Control: Iteration 1. Complete the following exercises in iteration. Although you will probably see ways to solve these problems without iteration, you must use it for all these solutions. a. Iterate through the following vector, a, using a for loop, and cdreate a new vector, b, of the same size containing Boolean values. The item in b should be true if the corresponding item in a is positive, and false for all other values. a = [ ] b. Iterate through the vector, a, using a while loop, and create a new vector, c, containing Boolean values by the same criteria as in exercise a. Page 6 of 19

7 c. Iterate through the following string array, d, using for loop, and create a new vector, f. The item in f should be the character A wherever the corresponding item in d is G, and T wherever the item in d is B. All other characters should not be changed. d = GBBBBBGGBGBABGBFBBGGGTGBGBGGBBGGJGGBGKBBLGBGTGG GB d. Iterate through the string array, d, using a while loop and create a new vector, g, under the same rules as exercise c. e. Iterate through the following logical array, n, using a for loop, and create a new vector, m, whose item should be 2 wherever the corresponding item in n is ture and -1 otherwise. N = [ ture false false true true true false true false true false false false false true false true false false true true false true true false] f. Iterate through th following array, z, using a while loop. Replace every element with the number 3 until you reach a number larger than 50. Leave the rest unchanged. z = [ ] 2. Write a script that transforms a vector v by raising each element in the vector to the power of its index and then reversing the order of the elements Example: V = [ ] -> [ ] Write two programs to do this problem: o using a for loop and o using vector operations only. 3. Write a MATLAB program to plot the following function: Page 7 of 19

8 15 4x + 10 x 9 y = 10x x 9 for 5 x x < 0 Use a for loop Use if elseif end statements 4. Write a MATLAB program to compute the sum of the first 15 terms in the series: f = 15 5k k = 1,2,3, k Use a for loop Use vectors only 5. Write a MATLAB program to determine how many terms (N) are required for the sum of the series: f = N 5 k k = 1,2,3, k to exceed 10,000. What is the sum for this many terms? Use a while loop. 6. Determine how long it will take to accumulate at least $10,000 in a bank account if you deposit $500 initially and $500 at the end of each year, if the account pays 5% annual interest. o Write a MATLAB program to solve this problem. Page 8 of 19

9 Chapter 11: Plotting 1. We need to plot a hyperbolic paraboloid. This is special in mathematics due to the existence of a saddle point or minimax that exists at the origin. This function can be created from the equation Z= (x^2/4)-(y^2/4). Write a MATLAB script to plot this function with following restrictions: a. Vary x and y between -3 and 3, incremented in steps of.1 b. Draw the picture as a wire frame with the lines colored to indicate the y value c. Put a color bar on the plot identifying the colors to values of y Make sure the plot is labeled and titled. 2. Problem 3 from textbook Write a MATLAB program to do this problem. Show your results for the interval: [ 0,4π ] only. Use the command linspace. 3. Problem 6 from textbook. 4. Problem 7 from textbook Chapter 5: Functions 1. Write a function circle.m that consumes the radius r of a circle, calculates the 2 circumference and area of the circle: c = 2πr and a = πr, and gives the outputs as c and a. Write a program problem1.m that calls the function circle.m in order to calculate the circumference and area of a circle with radius 10 mm. 2. Write a function quadroots.m that consumes the three coefficients: a, b, c ; 2 calculates the two roots of the quadratic equation: ax + bx + c = 0 and gives the Page 9 of 19

10 Chapter 12: Matrices 1. Problem 1 from textbook. 2 2 b + b 4ac b b 4ac outputs as x1 = ; x2 =. 2a 2a Write a program problem2.m to test your function quadroots.m for the 2 equation: x x 6 = 0. The program should call the function quadroots.m to calculate the roots of the given equation. 3. Write a function polynomialvalue.m that consumes a vector: a [ a a ] = n n 1...a 0, and a scalar value x, calculates the polynomial value: n n 1 f ( x) = an x + an 1 x a1x + a0 and gives the outputs: n, the order of the polynomial and f, the value of the polynomial at x. Write a program polynomialvaluetest.m that calls the above function in 2 order to calculate the value of the polynomial: x x 6 at x = 3. Read the help pages on MATLAB s command: polyval; but do not use polyval to do this problem. 2. Write a short script to solve the system of linear equations: 2x+5y+7z=0 3x+2y+3z=2 X+3y+2z=5 3. Problem 2 from textbook. Write a script to compute and print the value of the dollar in eullars. For example, your script might print 1 dollar = 4.64 eullars. Use the fprintf command Chapter 6: Character Strings 1. We need to count the vowels in a character string. Follow these directions: a. Write a function called isconsonant that takes in a letter of the alphabet. Page 10 of 19

11 It returns true if the letter is a consonant, and false if it is a vowel. You can assume that only lowercase letters will be passed into the function, but you should not need to write out all the consonants! b. Write an iterative function called countvowels that takes in a character string and returns the number of vowels in the array. You must use isconsonant in this function Do not use switch statements. The following is an example of an output >> b=isconsonant('a') b = 0 >> b=isconsonant('b') b = 1 >> n=countvowels('engineering') n = 5 2. Coding & Decoding Write a function mycoding.m, which takes in a string array as an input, creates a coded string array using your coding scheme and displays the coded string as the output. Write a function mydecoding.m, which takes in the coded string as an input, decodes it using your decoding scheme and displays the original string as the output. Write a main or test program mycodetest.m to test your functions for various cases. The following is an example of an output. Your coding scheme may be different from the one shown. >> a=mycoding('matlab is cool') Page 11 of 19

12 a = WK^VKL*s}*myyv >> b=mydecoding(a) b = MATLAB is cool Chapter 7: Cell Arrays and Structures 1. Calculate your GPA this semester Write a function makesemester.m that creates the structure mysemester with the following fields: lastname, firstname, class, credit and grade. Write a program mysemester.m that uses the function makesemester.m to create a structure array myfall2008 with the fields mentioned above. The 1 st element in the array includes your 1 st class with current grade, 2 nd element includes your 2 nd class with current grade and so on. For example for the 1 st element: myfall2008(1) =makesemester('jones','david','engr1371',3,'b'); Include in your program the commands to calculate your GPA for this semester. 2. Suppose we have a car structure that has the following fields: baseprice: a number representing the starting price of the car trim: the style of the car, represented as a string cc: a Boolean variable indicating that the car has cruise control dualab: a Boolean variable indicating that the car has dual air bags o Write a function makecar.m that creates the structure car with the fields mentioned in the problem. o Write a program examplecar.m that uses the function makecar.m to create a structure car with a base price of $10,000.00, trim LS, no cruise control and no dual air bags. o Write a function caroptions.m that takes in a car structure and returns its final price from the base price and options: The standard trim of the car is s Page 12 of 19

13 Chapter 9: Recursion 1. Problem 2 from textbook. If the trim is LS add $600 If the trim is LE, add $1200 If the car has cruise control, add $150 If the car had dual air bags, add $300 o Include in the program examplecar.m a command to calculate the final price of the car using the function caroptions.m. o Write a function carinventory.m that consumes an array of car structures and calculates the total value (sum of the final prices of all the cars) of the vehicles. o Include in the program examplecar.m a command to calculate the total value of an inventory with N cars. Test your program for N=3 using: a base price of $10,000.00, trim LS, no cruise control and no dual air bags. a base price of $10,000.00, trim LS, cruise control and no dual air bags. a base price of $10,000.00, trim LS, cruise control and dual air bags. o Use the function caroptions.m for the above calculation. 2. Write a function myrecursive.m that takes in a positive integer N and displays the following message N times: I am going to work very hard to become a highly qualified engineer!. Your function must utilize recursion. Test your function for N=100. Use the disp command to display the statement. Chapter 8: File I/O Chapter 15: Numerical Methods 1. Problem 6, Chapter 11 from textbook. Download relevant Excel files from the class website. Download relevant Excel files from the class website. Page 13 of 19

14 1. The subject of thermodynamics makes extensive use of tables. Although many properties can be described by fairly simple equations, others are poorly understood, or the equations describing their behavior are very complicated. It is much easier just to tabulate the data. For example, consider the data for steam at 0.1 MPa (approximately 1 atm), given in the following table. Temperature, C Internal Energy, kj/kg^ a. Use a linear interpolation to determine the internal energy at 215C b. Use linear interpolation to determine the temperature if the internal energy is 2600 kj/kg. 2. Determining how much water will flow through a culvert is not as easy as it might seem at first. The channel could have a non-uniform shape, obstructions might influence the flow, friction is important, and so forth. A numerical approach allows us to fold all of the concerns into a model of how the water actually behaves. Consider the following data collected from an actual culvert: Height, ft Flow, ft3/sec Page 14 of 19

15 a. Compute a best-fit linear, quadratic, and cubic fit for the data, and plot the information on the same graph. b. Which model best represents the data? (Linear is first order, quadratic is second order, and cubic is third order.) 3. Generate f(x)=x 2 for x = [ ], a. Compute and plot the linear and cubic-spline interpolation of the data points over the range [-3:0.05:6]. b. Compute the value of f(4) using the linear interpolation and cubic-spline interpolation. c. What are the respective errors when the answer is compared with the actual value of f(4)? 4. Assume that the following set of temperature measurements is taken from the cylinder head in a new engine that is being tested for possible use in a race car: Time, sec Temperature, F a. Compare plots of these data, assuming linear interpolation and assuming cubic-spline interpolation for values between the data points, using time values from 0 to 5 in increments of 0.1 s. b. Using the data from part (a), find the time value for which there is the largest difference between its linear interpolated temperature and its cubic interpolated temperature. Page 15 of 19

16 5. Assume that we measure temperatures at three points around the cylinder head in the engine from Programming Project 6, instead of at just one point. The set of data is then the following. Time, sec Temp1 Temp2 Temp a. Assume that these data have been stored in a matrix with six rows and four columns. Determine interpolated values of temperature at the three points in the engine at 2.6 seconds using linear interpolation. b. Using the information from part (a), determine the time when the temperature reached 75 at each of the three points in the cylinder head. 6. The following data set represents the time and altitude values for a sounding rocket that is performing high-altitude atmospheric research on the ionosphere. a. Determine the equation that best represents the data, using the interactive curve-fitting tools available in MATLAB. Plot the altitude data. b. The velocity function is the derivative of the altitude function. Using numerical differentiation, compute the velocity values form the data.. Plot the velocity data. (Note that the rocked is a two-stage rocket.) c. The acceleration function is the derivative of the velocity function. Using the velocity data determined from part (b), compute the acceleration data. Plot the acceleration data. Time Altitude 0 60 Page 16 of 19

17 10 2, , , , , , , , , , , , , , , , , , , , , , , , , Although the MATLAB makes it easy to find the roots of a function, sometimes all that is needed is a quick estimate. This can bed done by plotting a function and zooming in very close to see where the function equals zero. Since MATLAB draws straight lines between data points on a plot, it is good to draw Page 17 of 19

18 circles or stars at each data point, in addition to straight lines connecting the points. Plot the following function and zoom in to find the roots. >>n = 5; >>x = linspace (1, 2*pi, n); >>y =x.* sin(x) + cos (1/2*x). ^2-1./(x-7); >>plot(x,y, =o ) 8. The function f(x) is defined by f(x) =4e^-x. a. Plot this function over the interval [0, 1] with a suitable number of points. b. Use numerical integration techniques to estimate the integral of f(x) over [0, 0.5] and [0, 1]. c. Compare these results to the theoretical answer Chapter 13: Images 1. Write a MATLAB program which does the following: Reads three images (use jpg format) Creates a collage with the three images Creates a border of equal width around all three images Displays the final collage as an image Writes a new image file collage.jpg. Select three images which are of similar size, format and relevant to engineering. Chapter 14: Processing Sound (FYI only) 1. Write a MATLAB program which does the following: Reads an audio file (*.wav) Plots the sound data in the time domain. Plays the sound data. Performs an FFT on the sound data. Plots the data in the frequency domain Chapter 16: Sorting 1. Sort the following array using the algorithms listed below. Show all of the Page 18 of 19

19 vectors excluding the empty ones created at each step. [ ] Using insertion sort Using merge sort Using quick sort You do not need MATLAB for this problem. Clearly show all steps. Chapter 17: Searching Graphs TBD Page 19 of 19

II. Functions. 61. Find a way to graph the line from the problem 59 on your calculator. Sketch the calculator graph here, including the window values:

II. Functions. 61. Find a way to graph the line from the problem 59 on your calculator. Sketch the calculator graph here, including the window values: II Functions Week 4 Functions: graphs, tables and formulas Problem of the Week: The Farmer s Fence A field bounded on one side by a river is to be fenced on three sides so as to form a rectangular enclosure

More information

SENIOR HIGH MATH LEAGUE April 24, 2001 SECTION I: ONE POINT EACH

SENIOR HIGH MATH LEAGUE April 24, 2001 SECTION I: ONE POINT EACH GROUP V OPEN DIVISION TEST A Unless otherwise stated give exact answers. 1. Find the quotient when 8x 3 +1 is divided by 2 x + 1. 2. Given f ( x) = 5x 2b while g (x) = 4bx. If f (g(1)) = 36, what is g

More information

EXERCISE SET 10.2 MATD 0390 DUE DATE: INSTRUCTOR

EXERCISE SET 10.2 MATD 0390 DUE DATE: INSTRUCTOR EXERCISE SET 10. STUDENT MATD 090 DUE DATE: INSTRUCTOR You have studied the method known as "completing the square" to solve quadratic equations. Another use for this method is in transforming the equation

More information

QUADRATICS Graphing Quadratic Functions Common Core Standard

QUADRATICS Graphing Quadratic Functions Common Core Standard H Quadratics, Lesson 6, Graphing Quadratic Functions (r. 2018) QUADRATICS Graphing Quadratic Functions Common Core Standard Next Generation Standard F-IF.B.4 For a function that models a relationship between

More information

Table of Contents. Unit 5: Quadratic Functions. Answer Key...AK-1. Introduction... v

Table of Contents. Unit 5: Quadratic Functions. Answer Key...AK-1. Introduction... v These materials may not be reproduced for any purpose. The reproduction of any part for an entire school or school system is strictly prohibited. No part of this publication may be transmitted, stored,

More information

Slide 2 / 222. Algebra II. Quadratic Functions

Slide 2 / 222. Algebra II. Quadratic Functions Slide 1 / 222 Slide 2 / 222 Algebra II Quadratic Functions 2014-10-14 www.njctl.org Slide 3 / 222 Table of Contents Key Terms Explain Characteristics of Quadratic Functions Combining Transformations (review)

More information

Objectives: Find a function that models a problem and apply the techniques from 4.1, 4.2, and 4.3 the find the optimal or best value.

Objectives: Find a function that models a problem and apply the techniques from 4.1, 4.2, and 4.3 the find the optimal or best value. Objectives: Find a function that models a problem and apply the techniques from 4.1, 4., and 4.3 the find the optimal or best value. Suggested procedure: Step 1. Draw a picture! Label variables and known

More information

Handout 4 - Interpolation Examples

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

More information

Year 10 Scheme of work

Year 10 Scheme of work Year 10 Scheme of work Guidelines The purpose of this scheme of work is to build pupils towards an old style GCSE exam at the end of year 10 (see headings of different tiers on SOW). Pupils will be assessed

More information

Math 135: Intermediate Algebra Homework 10 Solutions December 18, 2007

Math 135: Intermediate Algebra Homework 10 Solutions December 18, 2007 Math 135: Intermediate Algebra Homework 10 Solutions December 18, 007 Homework from: Akst & Bragg, Intermediate Algebra through Applications, 006 Edition, Pearson/Addison-Wesley Subject: Linear Systems,

More information

Sample: Do Not Reproduce QUAD4 STUDENT PAGES. QUADRATIC FUNCTIONS AND EQUATIONS Student Pages for Packet 4: Quadratic Functions and Applications

Sample: Do Not Reproduce QUAD4 STUDENT PAGES. QUADRATIC FUNCTIONS AND EQUATIONS Student Pages for Packet 4: Quadratic Functions and Applications Name Period Date QUADRATIC FUNCTIONS AND EQUATIONS Student Pages for Packet 4: Quadratic Functions and Applications QUAD 4.1 Vertex Form of a Quadratic Function 1 Explore how changing the values of h and

More information

Higher tier unit 6a check in test. Calculator

Higher tier unit 6a check in test. Calculator Higher tier unit 6a check in test Calculator Q1. The point A has coordinates (2, 3). The point B has coordinates (6, 8). M is the midpoint of the line AB. Find the coordinates of M. Q2. The points A, B

More information

CCNY Math Review Chapter 2: Functions

CCNY Math Review Chapter 2: Functions CCN Math Review Chapter : Functions Section.1: Functions.1.1: How functions are used.1.: Methods for defining functions.1.3: The graph of a function.1.: Domain and range.1.5: Relations, functions, and

More information

STANDARDS OF LEARNING CONTENT REVIEW NOTES. ALGEBRA I Part I. 4 th Nine Weeks,

STANDARDS OF LEARNING CONTENT REVIEW NOTES. ALGEBRA I Part I. 4 th Nine Weeks, STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA I Part I 4 th Nine Weeks, 2016-2017 1 OVERVIEW Algebra I Content Review Notes are designed by the High School Mathematics Steering Committee as a resource

More information

AP Calculus. Extreme Values: Graphically. Slide 1 / 163 Slide 2 / 163. Slide 4 / 163. Slide 3 / 163. Slide 5 / 163. Slide 6 / 163

AP Calculus. Extreme Values: Graphically. Slide 1 / 163 Slide 2 / 163. Slide 4 / 163. Slide 3 / 163. Slide 5 / 163. Slide 6 / 163 Slide 1 / 163 Slide 2 / 163 AP Calculus Analyzing Functions Using Derivatives 2015-11-04 www.njctl.org Slide 3 / 163 Table of Contents click on the topic to go to that section Slide 4 / 163 Extreme Values

More information

G r a d e 1 0 I n t r o d u c t i o n t o A p p l i e d a n d P r e - C a l c u l u s M a t h e m a t i c s ( 2 0 S )

G r a d e 1 0 I n t r o d u c t i o n t o A p p l i e d a n d P r e - C a l c u l u s M a t h e m a t i c s ( 2 0 S ) G r a d e 0 I n t r o d u c t i o n t o A p p l i e d a n d P r e - C a l c u l u s M a t h e m a t i c s ( 0 S ) Midterm Practice Exam Answer Key G r a d e 0 I n t r o d u c t i o n t o A p p l i e d

More information

Review Sheet for Second Midterm Mathematics 1300, Calculus 1

Review Sheet for Second Midterm Mathematics 1300, Calculus 1 Review Sheet for Second Midterm Mathematics 300, Calculus. For what values of is the graph of y = 5 5 both increasing and concave up? 2. Where does the tangent line to y = 2 through (0, ) intersect the

More information

Name Class Date. Using Graphs to Relate Two Quantities

Name Class Date. Using Graphs to Relate Two Quantities 4-1 Reteaching Using Graphs to Relate Two Quantities An important life skill is to be able to a read graph. When looking at a graph, you should check the title, the labels on the axes, and the general

More information

Week 8 Problems. #2 Points possible: 1. Total attempts: 2 Enter your answer rounded to two decimal places.

Week 8 Problems. #2 Points possible: 1. Total attempts: 2 Enter your answer rounded to two decimal places. Week 8 Problems Name: Neal Nelson Show Scored View # Points possible:. Total attempts: A pilot is flying over a straight highway. He determines the angles of depression to two mileposts,.6 mi apart, to

More information

Contemporary Calculus Dale Hoffman (2012)

Contemporary Calculus Dale Hoffman (2012) 5.1: Introduction to Integration Previous chapters dealt with Differential Calculus. They started with the "simple" geometrical idea of the slope of a tangent line to a curve, developed it into a combination

More information

CHAPTER 9: Quadratic Equations and Functions

CHAPTER 9: Quadratic Equations and Functions CHAPTER : Quadratic Equations and Functions Notes # -: Exploring Quadratic Graphs A. Graphing ax A is a function that can be written in the form ax bx c where a, b, and c are real numbers and a 0. Examples:

More information

ALGEBRA 1 NOTES. Quarter 3. Name: Block

ALGEBRA 1 NOTES. Quarter 3. Name: Block 2016-2017 ALGEBRA 1 NOTES Quarter 3 Name: Block Table of Contents Unit 8 Exponent Rules Exponent Rules for Multiplication page 4 Negative and Zero Exponents page 8 Exponent Rules Involving Quotients page

More information

Math 1201 Unit 5: Relations & Functions. Ch. 5 Notes

Math 1201 Unit 5: Relations & Functions. Ch. 5 Notes Math 1201 Unit 5: Relations & Functions Read Building On, Big Ideas, and New Vocabulary, p. 254 text. 5.1 Representing Relations (0.5 class) Read Lesson Focus p. 256 text. Outcomes Ch. 5 Notes 1. Define

More information

MATH 31A HOMEWORK 9 (DUE 12/6) PARTS (A) AND (B) SECTION 5.4. f(x) = x + 1 x 2 + 9, F (7) = 0

MATH 31A HOMEWORK 9 (DUE 12/6) PARTS (A) AND (B) SECTION 5.4. f(x) = x + 1 x 2 + 9, F (7) = 0 FROM ROGAWSKI S CALCULUS (2ND ED.) SECTION 5.4 18.) Express the antiderivative F (x) of f(x) satisfying the given initial condition as an integral. f(x) = x + 1 x 2 + 9, F (7) = 28.) Find G (1), where

More information

B.Stat / B.Math. Entrance Examination 2017

B.Stat / B.Math. Entrance Examination 2017 B.Stat / B.Math. Entrance Examination 017 BOOKLET NO. TEST CODE : UGA Forenoon Questions : 0 Time : hours Write your Name, Registration Number, Test Centre, Test Code and the Number of this Booklet in

More information

WW Prob Lib1 Math course-section, semester year

WW Prob Lib1 Math course-section, semester year WW Prob Lib Math course-section, semester year WeBWorK assignment due /25/06 at :00 PM..( pt) Consider the parametric equation x = 7(cosθ + θsinθ) y = 7(sinθ θcosθ) What is the length of the curve for

More information

UNDERSTANDING PROBLEMS AND HOW TO SOLVE THEM BY USING COMPUTERS

UNDERSTANDING PROBLEMS AND HOW TO SOLVE THEM BY USING COMPUTERS UNDERSTANDING PROBLEMS AND HOW TO SOLVE THEM BY USING COMPUTERS INTRODUCTION TO PROBLEM SOLVING Introduction to Problem Solving Understanding problems Data processing Writing an algorithm CONTINUE.. Tool

More information

Precalculus Notes: Unit 7 Systems of Equations and Matrices

Precalculus Notes: Unit 7 Systems of Equations and Matrices Date: 7.1, 7. Solving Systems of Equations: Graphing, Substitution, Elimination Syllabus Objectives: 8.1 The student will solve a given system of equations or system of inequalities. Solution of a System

More information

Summer Math Assignments for Students Entering Integrated Math

Summer Math Assignments for Students Entering Integrated Math Summer Math Assignments for Students Entering Integrated Math Purpose: The purpose of this packet is to review pre-requisite skills necessary for the student to be successful in Integrated Math. You are

More information

MAFS Algebra 1. Quadratic Functions. Day 17 - Student Packet

MAFS Algebra 1. Quadratic Functions. Day 17 - Student Packet MAFS Algebra 1 Quadratic Functions Day 17 - Student Packet Day 17: Quadratic Functions MAFS.912.F-IF.3.7a, MAFS.912.F-IF.3.8a I CAN graph a quadratic function using key features identify and interpret

More information

Using Technology to Make Connections in Algebra

Using Technology to Make Connections in Algebra Using Technology to Make Connections in Algebra Richard Parr rparr@rice.edu Rice University School Mathematics Project http://rusmp.rice.edu All On The Line Alg1Week17_Systems.tns Name Class Problem 1

More information

MAT 003 Brian Killough s Instructor Notes Saint Leo University

MAT 003 Brian Killough s Instructor Notes Saint Leo University MAT 003 Brian Killough s Instructor Notes Saint Leo University Success in online courses requires self-motivation and discipline. It is anticipated that students will read the textbook and complete sample

More information

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

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

More information

College Pre Calculus A Period. Weekly Review Sheet # 1 Assigned: Monday, 9/9/2013 Due: Friday, 9/13/2013

College Pre Calculus A Period. Weekly Review Sheet # 1 Assigned: Monday, 9/9/2013 Due: Friday, 9/13/2013 College Pre Calculus A Name Period Weekly Review Sheet # 1 Assigned: Monday, 9/9/013 Due: Friday, 9/13/013 YOU MUST SHOW ALL WORK FOR EVERY QUESTION IN THE BOX BELOW AND THEN RECORD YOUR ANSWERS ON THE

More information

Graph Quadratic Functions Using Properties *

Graph Quadratic Functions Using Properties * OpenStax-CNX module: m63466 1 Graph Quadratic Functions Using Properties * OpenStax This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 4.0 By the end of this

More information

6. Find the equation of the plane that passes through the point (-1,2,1) and contains the line x = y = z.

6. Find the equation of the plane that passes through the point (-1,2,1) and contains the line x = y = z. Week 1 Worksheet Sections from Thomas 13 th edition: 12.4, 12.5, 12.6, 13.1 1. A plane is a set of points that satisfies an equation of the form c 1 x + c 2 y + c 3 z = c 4. (a) Find any three distinct

More information

Park Forest Math Team. Meet #5. Self-study Packet. Problem Categories for this Meet (in addition to topics of earlier meets):

Park Forest Math Team. Meet #5. Self-study Packet. Problem Categories for this Meet (in addition to topics of earlier meets): Park Forest Math Team Meet #5 Self-study Packet Problem Categories for this Meet (in addition to topics of earlier meets): 1. Mystery: Problem solving 2. : Solid (Volume and Surface Area) 3. Number Theory:

More information

Name: DUE: HOUR: 2015/2016 Geometry Final Exam Review

Name: DUE: HOUR: 2015/2016 Geometry Final Exam Review Name: DUE: HOUR: 2015/2016 Geometry Final Exam Review 1. Find x. 2. Find y. x = 3. A right triangle is shown below. Find the lengths x, y, and z. y = 4. Find x. x = y = z = x = 5. Find x. x = 6. ABC ~

More information

A Pedi for the Lady... And Other Area/Volume Activities

A Pedi for the Lady... And Other Area/Volume Activities A Pedi for the Lady... And Other Area/Volume Activities Investigations that provide a foundation for Calculus Deedee Henderson Oxford, Alabama dhenderson.oh@oxford.k12.al.us Did you know that D=RxT is

More information

Practice problems from old exams for math 233

Practice problems from old exams for math 233 Practice problems from old exams for math 233 William H. Meeks III October 26, 2012 Disclaimer: Your instructor covers far more materials that we can possibly fit into a four/five questions exams. These

More information

Lab1: Use of Word and Excel

Lab1: Use of Word and Excel Dr. Fritz Wilhelm; physics 230 Lab1: Use of Word and Excel Page 1 of 9 Lab partners: Download this page onto your computer. Also download the template file which you can use whenever you start your lab

More information

Lesson 8 Introduction to Quadratic Functions

Lesson 8 Introduction to Quadratic Functions Lesson 8 Introduction to Quadratic Functions We are leaving exponential and logarithmic functions behind and entering an entirely different world. As you work through this lesson, you will learn to identify

More information

GCSE-AS Mathematics Bridging Course. Chellaston School. Dr P. Leary (KS5 Coordinator) Monday Objectives. The Equation of a Line.

GCSE-AS Mathematics Bridging Course. Chellaston School. Dr P. Leary (KS5 Coordinator) Monday Objectives. The Equation of a Line. GCSE-AS Mathematics Bridging Course Chellaston School Dr (KS5 Coordinator) Monday Objectives The Equation of a Line Surds Linear Simultaneous Equations Tuesday Objectives Factorising Quadratics & Equations

More information

Lesson 17: Graphing Quadratic Functions from the Standard Form,

Lesson 17: Graphing Quadratic Functions from the Standard Form, : Graphing Quadratic Functions from the Standard Form, Student Outcomes Students graph a variety of quadratic functions using the form 2 (standard form). Students analyze and draw conclusions about contextual

More information

Complete Assignment #1 listed below on WK #1 in packet. Textbook required!!!

Complete Assignment #1 listed below on WK #1 in packet. Textbook required!!! 400Algebra 2H ASSIGNMENT SHEETrev14 CHAPTER 3: Linear Functions with Review of Chapter 1 and 2 (3-1 to 3-4 Highlights on reverse side) Directions: 1. Review classwork and read each section in textbook

More information

KS3 MATHEMATICS THRESHOLD DESCRIPTORS NUMBER (Incl. RATIO & PROPORTION)

KS3 MATHEMATICS THRESHOLD DESCRIPTORS NUMBER (Incl. RATIO & PROPORTION) KS3 MATHEMATICS THRESHOLD DESCRIPTORS NUMBER (Incl. RATIO & PROPORTION) Topic Integers Decimals Approximation Fractions Concepts and skills Read, write, order and compare positive integers up to 1000 Add

More information

Moore Catholic High School Math Department

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

More information

Unit 1 Quadratic Functions

Unit 1 Quadratic Functions Unit 1 Quadratic Functions This unit extends the study of quadratic functions to include in-depth analysis of general quadratic functions in both the standard form f ( x) = ax + bx + c and in the vertex

More information

F-BF Model air plane acrobatics

F-BF Model air plane acrobatics F-BF Model air plane acrobatics Alignments to Content Standards: F-IF.B.4 Task A model airplane pilot is practicing flying her airplane in a big loop for an upcoming competition. At time t = 0 her airplane

More information

8th Grade. Slide 1 / 97. Slide 2 / 97. Slide 3 / 97. 3D Geometry. Table of Contents. 3-Dimensional Solids. Volume. Glossary & Standards

8th Grade. Slide 1 / 97. Slide 2 / 97. Slide 3 / 97. 3D Geometry. Table of Contents. 3-Dimensional Solids. Volume. Glossary & Standards Slide 1 / 97 Slide 2 / 97 8th Grade 3D Geometry 2015-11-20 www.njctl.org Table of Contents Slide 3 / 97 3-Dimensional Solids Click on the topic to go to that section Volume Prisms and Cylinders Pyramids,

More information

Unit 6 Quadratic Functions

Unit 6 Quadratic Functions Unit 6 Quadratic Functions 12.1 & 12.2 Introduction to Quadratic Functions What is A Quadratic Function? How do I tell if a Function is Quadratic? From a Graph The shape of a quadratic function is called

More information

Answers. Investigation 4. ACE Assignment Choices. Applications

Answers. Investigation 4. ACE Assignment Choices. Applications Answers Investigation ACE Assignment Choices Problem. Core Other Connections, ; Etensions ; unassigned choices from previous problems Problem. Core, 7 Other Applications, ; Connections ; Etensions ; unassigned

More information

Answer Key: Three-Dimensional Cross Sections

Answer Key: Three-Dimensional Cross Sections Geometry A Unit Answer Key: Three-Dimensional Cross Sections Name Date Objectives In this lesson, you will: visualize three-dimensional objects from different perspectives be able to create a projection

More information

February 8 th February 12 th. Unit 6: Polynomials & Introduction to Quadratics

February 8 th February 12 th. Unit 6: Polynomials & Introduction to Quadratics Algebra I February 8 th February 12 th Unit 6: Polynomials & Introduction to Quadratics Jump Start 1) Use the elimination method to solve the system of equations below. x + y = 2 3x + y = 8 2) Solve: 13

More information

UNIT 3 - MEASUREMENT & PROPORTIONAL REASONING TEST

UNIT 3 - MEASUREMENT & PROPORTIONAL REASONING TEST Class: Date: UNIT 3 - MEASUREMENT & PROPORTIONAL REASONING TEST Multiple Choice Identify the choice that best completes the statement or answers the question. 1. When designing a building, you must be

More information

422 UNIT 12 SOLID FIGURES. The volume of an engine s cylinders affects its power.

422 UNIT 12 SOLID FIGURES. The volume of an engine s cylinders affects its power. UNIT 12 Solid Figures The volume of an engine s cylinders affects its power. 422 UNIT 12 SOLID FIGURES Gas-powered engines are driven by little explosions that move pistons up and down in cylinders. When

More information

Additional Practice. Name Date Class

Additional Practice. Name Date Class Additional Practice Investigation 1 1. The four nets below will fold into rectangular boxes. Net iii folds into an open box. The other nets fold into closed boxes. Answer the following questions for each

More information

Calculators ARE NOT Permitted On This Portion Of The Exam 28 Questions - 55 Minutes

Calculators ARE NOT Permitted On This Portion Of The Exam 28 Questions - 55 Minutes 1 of 11 1) Give f(g(1)), given that Calculators ARE NOT Permitted On This Portion Of The Exam 28 Questions - 55 Minutes 2) Find the slope of the tangent line to the graph of f at x = 4, given that 3) Determine

More information

Independent Practice #2

Independent Practice #2 All problems with answers or work are examples. Independent Practice #2 Section 1.1 Determine the independent and dependent quantities in each scenario. (1-2) 1. Phillip enjoys rock climbing on the weekends.

More information

Name: Teacher: Form: LEARNER JOURNAL. Set: Mathematics. Module 2 END OF YEAR TARGET: GCSE TARGET:

Name: Teacher: Form: LEARNER JOURNAL. Set: Mathematics. Module 2 END OF YEAR TARGET: GCSE TARGET: Name: Teacher: Form: Set: LEARNER JOURNAL Mathematics Module 2 END OF YEAR TARGET: GCSE TARGET: MODULE 2 use a number line to represent negative numbers use inequalities with negative numbers compare and

More information

Practice problems from old exams for math 233 William H. Meeks III December 21, 2009

Practice problems from old exams for math 233 William H. Meeks III December 21, 2009 Practice problems from old exams for math 233 William H. Meeks III December 21, 2009 Disclaimer: Your instructor covers far more materials that we can possibly fit into a four/five questions exams. These

More information

Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 5/17/2012 Physics 120 Section: ####

Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 5/17/2012 Physics 120 Section: #### Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 Lab partners: Lab#1 Presentation of lab reports The first thing we do is to create page headers. In Word 2007 do the following:

More information

Math 370 Exam 5 Review Name

Math 370 Exam 5 Review Name Math 370 Exam 5 Review Name Graph the ellipse and locate the foci. 1) x2 6 + y2 = 1 1) Objective: (9.1) Graph Ellipses Not Centered at the Origin Graph the ellipse. 2) (x + 2)2 + (y + 1)2 9 = 1 2) Objective:

More information

PROGRAMMING IN C AND C++:

PROGRAMMING IN C AND C++: PROGRAMMING IN C AND C++: Week 1 1. Introductions 2. Using Dos commands, make a directory: C:\users\YearOfJoining\Sectionx\USERNAME\CS101 3. Getting started with Visual C++. 4. Write a program to print

More information

FURTHER MATHS. WELCOME TO A Level FURTHER MATHEMATICS AT CARDINAL NEWMAN CATHOLIC SCHOOL

FURTHER MATHS. WELCOME TO A Level FURTHER MATHEMATICS AT CARDINAL NEWMAN CATHOLIC SCHOOL FURTHER MATHS WELCOME TO A Level FURTHER MATHEMATICS AT CARDINAL NEWMAN CATHOLIC SCHOOL This two-year Edexcel Pearson syllabus is intended for high ability candidates who have achieved, or are likely to

More information

Math 98 - Introduction to MATLAB Programming. Fall Lecture 1

Math 98 - Introduction to MATLAB Programming. Fall Lecture 1 Syllabus Instructor: Chris Policastro Class Website: https://math.berkeley.edu/~cpoli/math98/fall2016.html See website for 1 Class Number 2 Oce hours 3 Textbooks 4 Lecture schedule slides programs Syllabus

More information

Semester 2 Review Problems will be sectioned by chapters. The chapters will be in the order by which we covered them.

Semester 2 Review Problems will be sectioned by chapters. The chapters will be in the order by which we covered them. Semester 2 Review Problems will be sectioned by chapters. The chapters will be in the order by which we covered them. Chapter 9 and 10: Right Triangles and Trigonometric Ratios 1. The hypotenuse of a right

More information

NMC Sample Problems: Grade 8

NMC Sample Problems: Grade 8 NM Sample Problems: Grade 8. right triangle has side lengths of 4 and 8. What is the length of the hypotenuse (the longest side)? 4 0 4 4. n isosceles triangle has a base length of 0 and a side length.

More information

1. Be sure to complete the exploration before working on the rest of this worksheet.

1. Be sure to complete the exploration before working on the rest of this worksheet. PreCalculus Worksheet 4.1 1. Be sure to complete the exploration before working on the rest of this worksheet.. The following angles are given to you in radian measure. Without converting to degrees, draw

More information

Lesson 8: Graphs and Graphing Linear Equations

Lesson 8: Graphs and Graphing Linear Equations A critical skill required for the study of algebra is the ability to construct and interpret graphs. In this lesson we will learn how the Cartesian plane is used for constructing graphs and plotting data.

More information

Unit 5. Area & Volume. Area Composite Area Surface Area Volume. Math 6 Unit 5 Calendar 1/14 1/15 1/16 1/17 1/18. Name: Math Teacher:

Unit 5. Area & Volume. Area Composite Area Surface Area Volume. Math 6 Unit 5 Calendar 1/14 1/15 1/16 1/17 1/18. Name: Math Teacher: Math 6 Unit 5 Calendar 1/14 1/15 1/16 1/17 1/18 Name: Unit 5 Area & Volume Area Composite Area Surface Area Volume Review Or Computer Lab Unit 5 Test Or Computer Lab Unit 5 Test Or Computer Lab Unit 5

More information

17.2 Surface Area of Prisms

17.2 Surface Area of Prisms h a b c h a b c Locker LESSON 17. Surface Area of Prisms and Cylinders Texas Math Standards The student is expected to: G.11.C Apply the formulas for the total and lateral surface area of three-dimensional

More information

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

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

More information

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

WTS TUTORING WTS CALCULUS GRADE : 12 : PROF KWV KHANGELANI SIBIYA : WTS TUTORS CELL NO. : :

WTS TUTORING WTS CALCULUS GRADE : 12 : PROF KWV KHANGELANI SIBIYA : WTS TUTORS CELL NO. : : WTS TUTORING 1 WTS TUTORING WTS CALCULUS GRADE : 12 COMPILED BY : PROF KWV KHANGELANI SIBIYA : WTS TUTORS CELL NO. : 0826727928 EMAIL FACEBOOK P. : kwvsibiya@gmail.com : WTS MATHS & SCEINCE TUTORING WTS

More information

Park Forest Math Team. Meet #5. Self-study Packet. Problem Categories for this Meet (in addition to topics of earlier meets):

Park Forest Math Team. Meet #5. Self-study Packet. Problem Categories for this Meet (in addition to topics of earlier meets): Park Forest Math Team Meet #5 Self-study Packet Problem Categories for this Meet (in addition to topics of earlier meets): 1. Mystery: Problem solving 2. : Solid (Volume and Surface Area) 3. Number Theory:

More information

Answers. Chapter 2. 1) Give the coordinates of the following points:

Answers. Chapter 2. 1) Give the coordinates of the following points: Answers Chapter 2 1) Give the coordinates of the following points: a (-2.5, 3) b (1, 2) c (2.5, 2) d (-1, 1) e (0, 0) f (2, -0.5) g (-0.5, -1.5) h (0, -2) j (-3, -2) 1 2) List the 48 different possible

More information

CLEP Pre-Calculus. Section 1: Time 30 Minutes 50 Questions. 1. According to the tables for f(x) and g(x) below, what is the value of [f + g]( 1)?

CLEP Pre-Calculus. Section 1: Time 30 Minutes 50 Questions. 1. According to the tables for f(x) and g(x) below, what is the value of [f + g]( 1)? CLEP Pre-Calculus Section : Time 0 Minutes 50 Questions For each question below, choose the best answer from the choices given. An online graphing calculator (non-cas) is allowed to be used for this section..

More information

February 07, Dimensional Geometry Notebook.notebook. Glossary & Standards. Prisms and Cylinders. Return to Table of Contents

February 07, Dimensional Geometry Notebook.notebook. Glossary & Standards. Prisms and Cylinders. Return to Table of Contents Prisms and Cylinders Glossary & Standards Return to Table of Contents 1 Polyhedrons 3-Dimensional Solids A 3-D figure whose faces are all polygons Sort the figures into the appropriate side. 2. Sides are

More information

7 Control Structures, Logical Statements

7 Control Structures, Logical Statements 7 Control Structures, Logical Statements 7.1 Logical Statements 1. Logical (true or false) statements comparing scalars or matrices can be evaluated in MATLAB. Two matrices of the same size may be compared,

More information

Neatly print first and last names: Exam II. "On my honor, as an Aggie, I have neither given nor received unauthorized aid on this academic work.

Neatly print first and last names: Exam II. On my honor, as an Aggie, I have neither given nor received unauthorized aid on this academic work. Fry Texas A&M University! Math 150 Precalculus Fall 2015! 1 Neatly print first and last names: Lecture Time:!! 12:45 PM!!! 2:20 PM!! (Circle one.) Exam II "On my honor, as an Aggie, I have neither given

More information

[B] hours b, P.I. A2.N.9 When simplified,

[B] hours b, P.I. A2.N.9 When simplified, Math B Regents Exam 0804 Page 1 1. 080401b, P.I. G.G.8 Which condition does not prove that two triangles are congruent? [A] SAS SAS [B] SSA SSA [C] ASA ASA [D] SSS SSS. 08040b, P.I. A.A.5 The speed of

More information

Essential Questions. Key Terms. Algebra. Arithmetic Sequence

Essential Questions. Key Terms. Algebra. Arithmetic Sequence Linear Equations and Inequalities Introduction Average Rate of Change Coefficient Constant Rate of Change Continuous Discrete Domain End Behaviors Equation Explicit Formula Expression Factor Inequality

More information

d = (x 2 - x 1 ) 2 + (y 2 - y 1 ) 2 Student Name: Date: Teacher Name: Sunil Dudeja Score:

d = (x 2 - x 1 ) 2 + (y 2 - y 1 ) 2 Student Name: Date: Teacher Name: Sunil Dudeja Score: Geometry EOC (GSE) Quiz Answer Key Equations and Measurement - (MGSE9 12.G.GPE.4) Use Coordinates For Theorems, (MGSE9 12.G.GPE.5 ) Prove Slope Criteria, (MGSE9 12.G.GPE.6) Find The Point, (MGSE9 12.G.GPE.7

More information

Park Forest Math Team. Meet #5. Self-study Packet. Problem Categories for this Meet (in addition to topics of earlier meets):

Park Forest Math Team. Meet #5. Self-study Packet. Problem Categories for this Meet (in addition to topics of earlier meets): Park Forest Math Team Meet #5 Self-study Packet Problem Categories for this Meet (in addition to topics of earlier meets): 1. Mystery: Problem solving 2. : Solid (Volume and Surface Area) 3. Number Theory:

More information

Algebra II Quadratic Functions and Equations - Extrema Unit 05b

Algebra II Quadratic Functions and Equations - Extrema Unit 05b Big Idea: Quadratic Functions can be used to find the maximum or minimum that relates to real world application such as determining the maximum height of a ball thrown into the air or solving problems

More information

Multiple Angle and Product-to-Sum Formulas. Multiple-Angle Formulas. Double-Angle Formulas. sin 2u 2 sin u cos u. 2 tan u 1 tan 2 u. tan 2u.

Multiple Angle and Product-to-Sum Formulas. Multiple-Angle Formulas. Double-Angle Formulas. sin 2u 2 sin u cos u. 2 tan u 1 tan 2 u. tan 2u. 3330_0505.qxd 1/5/05 9:06 AM Page 407 Section 5.5 Multiple-Angle and Product-to-Sum Formulas 407 5.5 Multiple Angle and Product-to-Sum Formulas What you should learn Use multiple-angle formulas to rewrite

More information

Casey County Schools- 2 nd Grade Math Curriculum Map

Casey County Schools- 2 nd Grade Math Curriculum Map Week(s) Concept (Big Ideas) Weeks 1 Topic 1 Understanding Addition and Subtraction Standards I can statement Critical Vocabulary 2.OA.1 Use addition and subtraction within 100 to solve oneand two-step

More information

CSC 121 Spring 2017 Howard Rosenthal

CSC 121 Spring 2017 Howard Rosenthal CSC 121 Spring 2017 Howard Rosenthal Agenda To be able to define computer program, algorithm, and highlevel programming language. To be able to list the basic stages involved in writing a computer program.

More information

MA 243 Calculus III Fall Assignment 1. Reading assignments are found in James Stewart s Calculus (Early Transcendentals)

MA 243 Calculus III Fall Assignment 1. Reading assignments are found in James Stewart s Calculus (Early Transcendentals) MA 43 Calculus III Fall 8 Dr. E. Jacobs Assignments Reading assignments are found in James Stewart s Calculus (Early Transcendentals) Assignment. Spheres and Other Surfaces Read. -. and.6 Section./Problems

More information

Using the HP 38G in upper school: preliminary thoughts

Using the HP 38G in upper school: preliminary thoughts Using the HP 38G in upper school: preliminary thoughts Barry Kissane Murdoch University The following examples have been devised to show some of the range of ways in which the HP 38G graphics calculator

More information

4 Visualization and. Approximation

4 Visualization and. Approximation 4 Visualization and Approximation b A slope field for the differential equation y tan(x + y) tan(x) tan(y). It is not always possible to write down an explicit formula for the solution to a differential

More information

STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II. 3 rd Nine Weeks,

STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II. 3 rd Nine Weeks, STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II 3 rd Nine Weeks, 2016-2017 1 OVERVIEW Algebra II Content Review Notes are designed by the High School Mathematics Steering Committee as a resource

More information

College Algebra Exam File - Fall Test #1

College Algebra Exam File - Fall Test #1 College Algebra Exam File - Fall 010 Test #1 1.) For each of the following graphs, indicate (/) whether it is the graph of a function and if so, whether it the graph of one-to one function. Circle your

More information

1 of 49 11/30/2017, 2:17 PM

1 of 49 11/30/2017, 2:17 PM 1 of 49 11/30/017, :17 PM Student: Date: Instructor: Alfredo Alvarez Course: Math 134 Assignment: math134homework115 1. The given table gives y as a function of x, with y = f(x). Use the table given to

More information

OpenStax-CNX module: m Quadratic Functions. OpenStax OpenStax Precalculus. Abstract

OpenStax-CNX module: m Quadratic Functions. OpenStax OpenStax Precalculus. Abstract OpenStax-CNX module: m49337 1 Quadratic Functions OpenStax OpenStax Precalculus This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 4.0 In this section, you

More information

MATLAB Modul 3. Introduction

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

More information

NUMERICAL INTEGRATION

NUMERICAL INTEGRATION NUMERICAL INTEGRATION f(x) MISN-0-349 NUMERICAL INTEGRATION by Robert Ehrlich George Mason University 1. Numerical Integration Algorithms a. Introduction.............................................1 b.

More information

UNIT 3 CIRCLES AND VOLUME Lesson 5: Explaining and Applying Area and Volume Formulas Instruction

UNIT 3 CIRCLES AND VOLUME Lesson 5: Explaining and Applying Area and Volume Formulas Instruction Prerequisite Skills This lesson requires the use of the following skills: understanding and using formulas for the volume of prisms, cylinders, pyramids, and cones understanding and applying the formula

More information

Programming in MATLAB Part 2

Programming in MATLAB Part 2 Programming in MATLAB Part 2 A computer program is a sequence of computer commands. In a simple program the commands are executed one after the other in the order they are typed. MATLAB provides several

More information