Assignment #13: More Logic

Size: px
Start display at page:

Download "Assignment #13: More Logic"

Transcription

1 Assignment #13: More Logic 12b The height and speed as a function of time of a projectile (such as a thrown ball) launched with an initial speed of 40 at an angle 30 to the horizontal are given by where is the acceleration of gravity, 9.81 m/s 2. The projectile will strike the ground when h(t) = 0, therefor the time to hit is 2 Create an independent vector of times with a one millisecond spacing and the corresponding heights and velocities. Find the times when the height is 15 m or greater and the speed is 36 m/s or less. Report the results with a disp([ ]) sentence. 14a Let E1 and E2 be logical expressions. DeMorgan's laws state that: NOT(E1 AND E2) if and only if (NOT E1) OR (NOT E2) NOT(E1 OR E2) if and only if (NOT E1) AND (NOT E2) Use these laws to find the equivalent expression for each of the following expressions ~( x<10 & x>=6 ) ~( x==2 x>5 ) 14b Use x = 1:11 to verify that each original expression matches your equivalent expression. 15a These expressions are not equivalent, prove using a counter example. For example, if A=5, find values for B and C so that one expression is true and the other false. 1. A==B & (B==C A==C) 2. A==B (B==C & A==C)

2 Assignment #14: If Constructs 17 Rewrite the following statements to use only one if statement. No test run needed. if x < y if z < 10 w = x*y*z end end 18a Write a script that accepts a numerical input value from 0 to 100 and computes a corresponding letter grade. Display the results in a sentence such as: Your score of has earned a grade of B. You may use any grading scale you wish and any series of if statements (nested, sequential, elseifs ). Be sure there are no gaps in the computation, needs to get a grade as well. Show your code and a test run. 20a The diagram below shows a mass-spring model used in packaging systems and vehicle suspensions. The springs exert a force proportional to their compression, with the spring constant k. The outer springs apply additional force when the weight is too heavy for the middle spring. W = k1x W = k1x + 2k2(x-d) if x d if x d Create a function that computes the distance x, based on input arguments for W, k1, k2, and d. Test your function for k1 = 10 4 N/m, k2 = 1.5 ˣ 10 4 N/m, d = 0.1 m, and two possible W values: W = 500 N and W = 2000 N.

3 Assignment #15: Switches and Menues 40 A human player makes the first move against the computer in a game of Tic-Tac-Toe, which has a 3X3 grid of squares. Write a function that chooses a computer response to that first move. The function's input is a number from 1 to 9 corresponding to the human's first in the 3X3 grid of squares. The first column of squares are numbered 1,2,3 (heading down), the second column are numbered 4,5,6 and the third column 7,8,9. The function's output will be the computers responding first move. Use a switch construction to select the computer's responding first move and output it from the function. 42 The height and speed as a function of time of a projectile (such as a thrown ball) launched with an initial speed of at an angle to the horizontal are given by where is the acceleration of gravity, 9.80 m/s 2. The projectile will strike the ground when h(t) = 0, therefor the time to hit is 2 Write a script that uses a menu and a switch so the user can choose to compute and report one of the following three pieces of information: The maximum height, the minimum velocity, or the time to hit.

4 Assignment #16: Menu & Lookup Computations 41 The table below give the approximate values of the static coefficient of friction µs for various contacting surfaces. To start a weight W moving on a horizontal surface, you must push with a force F, where F = µsw. Write a script that has a cell array containing a column for the contacting material descriptions and another column for the friction coefficients. Use input() to allow the user enter the weight W and a menu() for them to select the contacting materials. The script should echo the contacting materials to the screen as well as the required force to get the weight moving. Should be done without a switch or if statement. Contacting Materials µs Metal on metal 0.20 Wood on wood 0.35 Metal on wood 0.40 Rubber on concrete Engineers sometimes use the van der Waals equation shown below to estimate the pressures and volumes of gasses in containers. P is the pressure in atmospheres, R is the universal gas constant L-atm/mol-K. T is the absolute temperature in Kelvin, and is the specific volume L/mol. a and b are adjustments that depend on each gas's molecular attraction and molecular size. The table below shows the adjustment constants for various gasses. Gas Symbol Attraction (a) Size (b) (L 2 -atm/mol 2 ) (L/mol) Helium He Hydrogen H Oxygen O Chlorine Cl Carbon dioxide CO Write a script that contains a 5x4 cell array with the text and data for the 5 gasses. Use input() to collect entries for and temperature. Use menu() to allow the user to select the gas. Compute the pressure. Test your script for Chlorine with = 20 L/mol at a temperature of 300 K.

5 Assignment #17: For Loops 47 The problem asks you to simulate financial accumulation in bank accounts with regular deposits and a yearly transfer to a CD (certificate of deposit) to earn extra interest. The account starts with a zero balance. The first 12 months of deposits are $300 each month. At the end of each month, add interest to the savings balance of 4% (0.04 divided by 12 months). At the end of each year in which the savings account balance is at least $3000, withdraw $2000 and add it to your CD balance. Each year, the CD balance earns 6% (this will need to be added in before making the Dec 31 transfer so that you don't get interest the same day you add a deposit). Your monthly deposits increase using the following table: Year Monthly Deposits Write a script with all the data loaded into variables (no input() functions needed). The program uses nested for loops to run through the 12 months X 5 years and compute the money accumulated in the savings and CDs. ENGR 6 MATLAB Assignment #18: While Loops 34 Write a script that uses a while loop to determine how long it will take to accumulate 1 million dollars in a bank account if you start with $10,000 dollars and deposit $10,000 at the end of each year. The account pays 6% annual interest.

6 Assignment #19: 2D Plot Chapter 5 2 A marketing engineer at a paint production company is looking to maximize the profitability of the company's efforts by setting the wholesale price. Years of experience and modeling has developed an equation that relates the millions of gallons sold Q to the sales price P. That equation is Q = P. So if we give it away we sell 6 million gallons, and if we charge $6 a gallon, no stores will order it. We have fixed costs of $2.045 million per year and variable costs of: Materials: Energy: Labor: 62 cents per gallon 24 cents per gallon 16 cents per gallon Make a script that generate a vector of the reasonable prices to the nearest cent, computes the net profits, and makes a plot of profit vs. price. The script should automatically add the standard axis labeling, title, name, date, course & college. The script should also scan to get the break-even price points and the max profit price. Edit the plot to add annotation for the break-even & max points and a text box that shows the unique equation and costs data. ENGR 6 MATLAB Assignment #20: Optimization 29a A company has the choice of producing up to four different products with its lathes, grinders, and milling machines. The number of hours on each machine required to produce a product is given in the following table, along with the number of hours available per week on each type of machine. Assume the company can sell everything it produces. The profit per item is also shown. Product Hours available Hours Required Lathe Grinder Milling Unit Profit ($) Determine how many units of each product the company should make to maximize its net profit, and compute the profit.

7 Assignment #21: 3D Plot Chapter 5 36 The electric potential voltage V at a point due to two charges is given by: where and are the charges on the particles in coulombs (C), and are the distances of the charges from the point in question (in meters), and is the permittivity of free space /. Use meshgrid() and mesh() to generate a 3D surface plot showing the voltage over the ranges x 0.25 and y The charges of 2 10 and 4 10 are located at (0.3, 0) and (-0.3,0) respectively. Add all appropriate annotation to the plot.

Matlab Sheet 4. Conditional Statements and Loops

Matlab Sheet 4. Conditional Statements and Loops Matlab Sheet 4 Conditional Statements and Loops 1. It is desired to compute the sum of the first 10 terms of the series 14k 20k 2 + 5k. k = 1,2,, Write and run the program to calculate the sum. 2. Create

More information

Matlab Sheet 4 - Solution. Conditional Statements and Loops

Matlab Sheet 4 - Solution. Conditional Statements and Loops Matlab Sheet 4 - Solution Conditional Statements and Loops 1. It is desired to compute the sum of the first 10 terms of the series 14k 3 20k 2 + 5k. k = 1,2,3, Write and run the program to calculate the

More information

L E S S O N M A S T E R. Name. Vocabulary. 1. In the expression b n, b is called the?.

L E S S O N M A S T E R. Name. Vocabulary. 1. In the expression b n, b is called the?. Vocabulary 7- See pages 7-7 for objectives.. In the epression b n, b is called the?.. The identity function f has the equation f()?.. If g(), is g an eample of a power function? Why or why not?. In a game

More information

MATH 1710 College Algebra Final Exam Review

MATH 1710 College Algebra Final Exam Review MATH 1710 College Algebra Final Exam Review MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Solve the problem. 1) There were 480 people at a play.

More information

Practice Questions for Math 131 Exam # 1

Practice Questions for Math 131 Exam # 1 Practice Questions for Math 131 Exam # 1 1) A company produces a product for which the variable cost per unit is $3.50 and fixed cost 1) is $20,000 per year. Next year, the company wants the total cost

More information

Pre-Leaving Certificate Examination, 2017 Triailscrúdú na hardteistiméireachta, Mathematics. Paper 1. Higher Level. 2½ hours.

Pre-Leaving Certificate Examination, 2017 Triailscrúdú na hardteistiméireachta, Mathematics. Paper 1. Higher Level. 2½ hours. *P6* Pre-Leaving Certificate Examination, 2017 Triailscrúdú na hardteistiméireachta, 2017 Mathematics Paper 1 Higher Level 2½ hours 300 marks Name: School: Address: Class: Teacher: For examiner Question

More information

MATH 1101 Exam 1 Review. Spring 2018

MATH 1101 Exam 1 Review. Spring 2018 MATH 1101 Exam 1 Review Spring 2018 Topics Covered Section 2.1 Functions in the Real World Section 2.2 Describing the Behavior of Functions Section 2.3 Representing Functions Symbolically Section 2.4 Mathematical

More information

MATH 112 Final Exam Study Questions

MATH 112 Final Exam Study Questions MATH Final Eam Study Questions Spring 08 Note: Certain eam questions have been more challenging for students. Questions marked (***) are similar to those challenging eam questions.. A company produces

More information

Algebra EOC Practice Test #1

Algebra EOC Practice Test #1 Class: Date: Algebra EOC Practice Test #1 Multiple Choice Identify the choice that best completes the statement or answers the question. 1. George is helping the manager of the local produce market expand

More information

The point is located eight units to the right of the y-axis and two units above the x-axis. A) ( 8, 2) B) (8, 2) C) ( 2, 8) D) (2, 8) E) ( 2, 8)

The point is located eight units to the right of the y-axis and two units above the x-axis. A) ( 8, 2) B) (8, 2) C) ( 2, 8) D) (2, 8) E) ( 2, 8) Name: Date: 1. Find the coordinates of the point. The point is located eight units to the right of the y-axis and two units above the x-axis. A) ( 8, ) B) (8, ) C) (, 8) D) (, 8) E) (, 8). Find the coordinates

More information

Review Assignment II

Review Assignment II MATH 11012 Intuitive Calculus KSU Name:. Review Assignment II 1. Let C(x) be the cost, in dollars, of manufacturing x widgets. Fill in the table with a mathematical expression and appropriate units corresponding

More information

Math 135 Intermediate Algebra. Homework 3 Solutions

Math 135 Intermediate Algebra. Homework 3 Solutions Math Intermediate Algebra Homework Solutions October 6, 007.: Problems,, 7-. On the coordinate plane, plot the following coordinates.. Next to each point, write its coordinates Clock-wise from upper left:

More information

Math 120 Final Exam Practice Problems, Form: A

Math 120 Final Exam Practice Problems, Form: A Math 120 Final Exam Practice Problems, Form: A Name: While every attempt was made to be complete in the types of problems given below, we make no guarantees about the completeness of the problems. Specifically,

More information

Lecture 6: Sections 2.2 and 2.3 Polynomial Functions, Quadratic Models

Lecture 6: Sections 2.2 and 2.3 Polynomial Functions, Quadratic Models L6-1 Lecture 6: Sections 2.2 and 2.3 Polynomial Functions, Quadratic Models Polynomial Functions Def. A polynomial function of degree n is a function of the form f(x) = a n x n + a n 1 x n 1 +... + a 1

More information

4 and m 3m. 2 b 2ab is equivalent to... (3 x + 2 xy + 7) - (6x - 4 xy + 3) is equivalent to...

4 and m 3m. 2 b 2ab is equivalent to... (3 x + 2 xy + 7) - (6x - 4 xy + 3) is equivalent to... NAME: SCORE: Find the answer choice that best answers the question. Write your answer choice in the blank provided beside each question. You must show all work necessary to solve the problem to receive

More information

MTH 65-Steiner Exam #1 Review: , , 8.6. Non-Calculator sections: (Solving Systems), Chapter 5 (Operations with Polynomials)

MTH 65-Steiner Exam #1 Review: , , 8.6. Non-Calculator sections: (Solving Systems), Chapter 5 (Operations with Polynomials) Non-Calculator sections: 4.1-4.3 (Solving Systems), Chapter 5 (Operations with Polynomials) The following problems are examples of the types of problems you might see on the non-calculator section of the

More information

Modeling Linear Relationships In the Patterns of Change unit, you studied a variety of

Modeling Linear Relationships In the Patterns of Change unit, you studied a variety of LESSON 1 Modeling Linear Relationships In the Patterns of Change unit, you studied a variety of relationships between quantitative variables. Among the most common were linear functions those with straight-line

More information

Math 1 Variable Manipulation Part 4 Word Problems

Math 1 Variable Manipulation Part 4 Word Problems Math 1 Variable Manipulation Part 4 Word Problems 1 TRANSLATING FROM ENGLISH INTO ALGEBRA (PLUG IN) The next part of variable manipulation problems is to figure out the problem from real life situations.

More information

Lesson 3 Average Rate of Change and Linear Functions

Lesson 3 Average Rate of Change and Linear Functions Lesson 3 Average Rate of Change and Linear Functions Lesson 3 Average Rate of Change and Linear Functions In this lesson, we will introduce the concept of average rate of change followed by a review of

More information

Algebra EOC Practice Test #1

Algebra EOC Practice Test #1 Class: Date: Algebra EOC Practice Test #1 Multiple Choice Identify the choice that best completes the statement or answers the question. 1. George is helping the manager of the local produce market expand

More information

MATH 1310 (College Mathematics for Liberal Arts) - Final Exam Review (Revised: Fall 2016)

MATH 1310 (College Mathematics for Liberal Arts) - Final Exam Review (Revised: Fall 2016) MATH 30 (College Mathematics for Liberal Arts) - Final Exam Review (Revised: Fall 206) This Review is comprehensive but should not be the only material used to study for the Final Exam. It should not be

More information

Integrated Math 10 Quadratic Functions Unit Test January 2013

Integrated Math 10 Quadratic Functions Unit Test January 2013 1. Answer the following question, which deal with general properties of quadratics. a. Solve the quadratic equation 0 x 9 (K) b. Fully factor the quadratic expression 3x 15x 18 (K) c. Determine the equation

More information

Algebra Quadratics Applications HW#54

Algebra Quadratics Applications HW#54 Algebra Quadratics Applications HW#54 1: A science class designed a ball launcher and tested it by shooting a tennis ball up and off the top of a 15-story building. They determined that the motion of the

More information

Word Problems Team Test KCATM 2014

Word Problems Team Test KCATM 2014 Word Problems Team Test KCATM 014 School 1) A right triangle has legs of length x and x + 4 and a hypotenuse of length x 4. Find the length of the triangle s longer leg. A) 4 B) 8 C) 1 D) 4 E) answer not

More information

Function: State whether the following examples are functions. Then state the domain and range. Use interval notation.

Function: State whether the following examples are functions. Then state the domain and range. Use interval notation. Name Period Date MIDTERM REVIEW Algebra 31 1. What is the definition of a function? Functions 2. How can you determine whether a GRAPH is a function? State whether the following examples are functions.

More information

Final Exam Review. MATH Intuitive Calculus Fall 2013 Circle lab day: Mon / Fri. Name:. Show all your work.

Final Exam Review. MATH Intuitive Calculus Fall 2013 Circle lab day: Mon / Fri. Name:. Show all your work. MATH 11012 Intuitive Calculus Fall 2013 Circle lab day: Mon / Fri Dr. Kracht Name:. 1. Consider the function f depicted below. Final Exam Review Show all your work. y 1 1 x (a) Find each of the following

More information

Math 112 Fall 2015 Midterm 2 Review Problems Page 1. has a maximum or minimum and then determine the maximum or minimum value.

Math 112 Fall 2015 Midterm 2 Review Problems Page 1. has a maximum or minimum and then determine the maximum or minimum value. Math Fall 05 Midterm Review Problems Page f 84 00 has a maimum or minimum and then determine the maimum or minimum value.. Determine whether Ma = 00 Min = 00 Min = 8 Ma = 5 (E) Ma = 84. Consider the function

More information

Companion. Jeffrey E. Jones

Companion. Jeffrey E. Jones MATLAB7 Companion 1O11OO1O1O1OOOO1O1OO1111O1O1OO 1O1O1OO1OO1O11OOO1O111O1O1O1O1 O11O1O1O11O1O1O1O1OO1O11O1O1O1 O1O1O1111O11O1O1OO1O1O1O1OOOOO O1111O1O1O1O1O1O1OO1OO1OO1OOO1 O1O11111O1O1O1O1O Jeffrey E.

More information

Introduction to Systems of Equations

Introduction to Systems of Equations Systems of Equations 1 Introduction to Systems of Equations Remember, we are finding a point of intersection x 2y 5 2x y 4 1. A golfer scored only 4 s and 5 s in a round of 18 holes. His score was 80.

More information

Math 112 Spring 2018 Midterm 1 Review Problems Page 1

Math 112 Spring 2018 Midterm 1 Review Problems Page 1 Math Spring 8 Midterm Review Problems Page Note: Certain eam questions have been more challenging for students. Questions marked (***) are similar to those challenging eam questions.. Which one of the

More information

5, 0. Math 112 Fall 2017 Midterm 1 Review Problems Page Which one of the following points lies on the graph of the function f ( x) (A) (C) (B)

5, 0. Math 112 Fall 2017 Midterm 1 Review Problems Page Which one of the following points lies on the graph of the function f ( x) (A) (C) (B) Math Fall 7 Midterm Review Problems Page. Which one of the following points lies on the graph of the function f ( ) 5?, 5, (C) 5,,. Determine the domain of (C),,,, (E),, g. 5. Determine the domain of h

More information

Math 3 Variable Manipulation Part 7 Absolute Value & Inequalities

Math 3 Variable Manipulation Part 7 Absolute Value & Inequalities Math 3 Variable Manipulation Part 7 Absolute Value & Inequalities 1 MATH 1 REVIEW SOLVING AN ABSOLUTE VALUE EQUATION Absolute value is a measure of distance; how far a number is from zero. In practice,

More information

Section 1.1: Functions Given by Formulas

Section 1.1: Functions Given by Formulas Section 1.1: Functions Given by Formulas Topics: Using function notation Domain Answering questions when given a formula functions Using TI to compute function values and using the Ans feature of the calculator

More information

Optimization Methods in Management Science

Optimization Methods in Management Science Problem Set Rules: Optimization Methods in Management Science MIT 15.053, Spring 2013 Problem Set 1 (First Group of Students) Students with first letter of surnames A F Due: February 12, 2013 1. Each student

More information

Released 2010 Achievement Test. Mathematics GRADE

Released 2010 Achievement Test. Mathematics GRADE Released 2010 Achievement Test Mathematics GRADE 9 Use the following information to answer question 1. The letters on the number line below represent rational numbers. 1. The approximate value of 15 is

More information

AP Physics C: Work, Energy, and Power Practice

AP Physics C: Work, Energy, and Power Practice AP Physics C: Work, Energy, and Power Practice 1981M2. A swing seat of mass M is connected to a fixed point P by a massless cord of length L. A child also of mass M sits on the seat and begins to swing

More information

Algebra 1R/H Regents Review 7. x 1, for which value of x is

Algebra 1R/H Regents Review 7. x 1, for which value of x is Algebra 1R/H Regents Review 7 NAME Date ( ) = x 2 2x 8 and g ( x) = 1 4 f ( x) = g ( x)? (Use 2 nd calc intersect on the graph.) 152) If f x (1) 1.75 and 1.438 (3) 1.438 and 0 (2) 1.75 and 4 (4) 4 and

More information

3. Find the slope of the tangent line to the curve given by 3x y e x+y = 1 + ln x at (1, 1).

3. Find the slope of the tangent line to the curve given by 3x y e x+y = 1 + ln x at (1, 1). 1. Find the derivative of each of the following: (a) f(x) = 3 2x 1 (b) f(x) = log 4 (x 2 x) 2. Find the slope of the tangent line to f(x) = ln 2 ln x at x = e. 3. Find the slope of the tangent line to

More information

Date: Pd: Unit 4. GSE H Analytic Geometry EOC Review Name: Units Rewrite ( 12 3) 2 in simplest form. 2. Simplify

Date: Pd: Unit 4. GSE H Analytic Geometry EOC Review Name: Units Rewrite ( 12 3) 2 in simplest form. 2. Simplify GSE H Analytic Geometry EOC Review Name: Units 4 7 Date: Pd: Unit 4 1. Rewrite ( 12 3) 2 in simplest form. 2. Simplify 18 25 3. Which expression is equivalent to 32 8? a) 2 2 27 4. Which expression is

More information

MATH FOR LIBERAL ARTS FINAL REVIEW

MATH FOR LIBERAL ARTS FINAL REVIEW MATH FOR LIBERAL ARTS FINAL REVIEW Find the value of the annuity. Round to the nearest cent. A = P 1 + r n r n nt - 1 P = A r n 1 + r n nt - 1 1) Periodic Deposit: $100 at the end of each year Rate: 5%

More information

Linear Modeling/Regression FUNCTION NOTATION

Linear Modeling/Regression FUNCTION NOTATION Linear Modeling/Regression FUNCTION NOTATION Given the function notation of a coordinate: a) Rewrite the coordinate as (x, y) b) Plot the point on the graph and give the quadrant it lies in 1) f() = 2)

More information

UNIT 3: MODELING AND ANALYZING QUADRATIC FUNCTIONS

UNIT 3: MODELING AND ANALYZING QUADRATIC FUNCTIONS UNIT 3: MODELING AND ANALYZING QUADRATIC FUNCTIONS This unit investigates quadratic functions. Students study the structure of quadratic expressions and write quadratic expressions in equivalent forms.

More information

On Your Own. Applications. Unit 1. 1 p = 7.5n - 55, where n represents the number of car washes and p represents the profit in dollars.

On Your Own. Applications. Unit 1. 1 p = 7.5n - 55, where n represents the number of car washes and p represents the profit in dollars. Applications 1 p = 7.5n - 55, where n represents the number of car washes and p represents the profit in dollars. 2 t = 0.5 + 2a, where a represents the area of the grass and t represents the time in hours

More information

Algebra 1 End-of-Course Assessment Practice Test with Solutions

Algebra 1 End-of-Course Assessment Practice Test with Solutions Algebra 1 End-of-Course Assessment Practice Test with Solutions For Multiple Choice Items, circle the correct response. For Fill-in Response Items, write your answer in the box provided, placing one digit

More information

COLLEGE ALGEBRA. Linear Functions & Systems of Linear Equations

COLLEGE ALGEBRA. Linear Functions & Systems of Linear Equations COLLEGE ALGEBRA By: Sister Mary Rebekah www.survivormath.weebly.com Cornell-Style Fill in the Blank Notes and Teacher s Key Linear Functions & Systems of Linear Equations 1 2 Slope & the Slope Formula

More information

MINI LESSON. Lesson 2a Linear Functions and Applications

MINI LESSON. Lesson 2a Linear Functions and Applications MINI LESSON Lesson 2a Linear Functions and Applications Lesson Objectives: 1. Compute AVERAGE RATE OF CHANGE 2. Explain the meaning of AVERAGE RATE OF CHANGE as it relates to a given situation 3. Interpret

More information

Topic 1. Solving Equations and Inequalities 1. Solve the following equation

Topic 1. Solving Equations and Inequalities 1. Solve the following equation Topic 1. Solving Equations and Inequalities 1. Solve the following equation Algebraically 2( x 3) = 12 Graphically 2( x 3) = 12 2. Solve the following equations algebraically a. 5w 15 2w = 2(w 5) b. 1

More information

Pre-Algebra Semester 1 Practice Exam B DRAFT

Pre-Algebra Semester 1 Practice Exam B DRAFT . Evaluate x y 5 6 80 when x = 0 and y =.. Which expression is equivalent to? + + + +. In Pre-Algebra class, we follow the order of operations in evaluating expressions. Which operation should a student

More information

In this lesson, we will focus on quadratic equations and inequalities and algebraic methods to solve them.

In this lesson, we will focus on quadratic equations and inequalities and algebraic methods to solve them. Lesson 7 Quadratic Equations, Inequalities, and Factoring Lesson 7 Quadratic Equations, Inequalities and Factoring In this lesson, we will focus on quadratic equations and inequalities and algebraic methods

More information

MATH 236 ELAC FALL 2017 TEST 3 NAME: SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question.

MATH 236 ELAC FALL 2017 TEST 3 NAME: SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question. MATH 6 ELAC FALL 7 TEST NAME: SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question. Evaluate the integral using integration by parts. ) 9x ln x dx ) ) x 5 -

More information

UNIT CSEC Multiple Choice Items Sample Paper 01

UNIT CSEC Multiple Choice Items Sample Paper 01 UNIT 0 Sample CSEC Multiple Choice Items and Revision Questions UNIT 0.. CSEC Multiple Choice Items Sample Paper 0 This paper consists of 60 Multiple Choice items from the Core Syllabus according to the

More information

Systems of Equations and Inequalities

Systems of Equations and Inequalities 1 Systems of Equations and Inequalities 2015 03 24 2 Table of Contents Solving Systems by Graphing Solving Systems by Substitution Solve Systems by Elimination Choosing your Strategy Solving Systems of

More information

Section 4.1 Solving Systems of Linear Inequalities

Section 4.1 Solving Systems of Linear Inequalities Section 4.1 Solving Systems of Linear Inequalities Question 1 How do you graph a linear inequality? Question 2 How do you graph a system of linear inequalities? Question 1 How do you graph a linear inequality?

More information

Chapter 1. Exercise Set 1.1

Chapter 1. Exercise Set 1.1 Chapter Exercise Set.. To prepare properly for this class, you need to do all the homework carefully and preview the new material that is to be covered in class.. At least hours of study and homework time

More information

Grade 9 Mathematics End-of-Term Exam Sample Paper

Grade 9 Mathematics End-of-Term Exam Sample Paper Grade 9 hapters 1-5 oursebook Pages all Student Name lass ate Multiple hoice: LULTOR NOT LLOWE etermine if the function is a linear function. Explain your reasoning. { 4, 13, 2, 1, 0, 3, 2, 1, 4, 13 }

More information

32. Use a graphing utility to find the equation of the line of best fit. Write the equation of the line rounded to two decimal places, if necessary.

32. Use a graphing utility to find the equation of the line of best fit. Write the equation of the line rounded to two decimal places, if necessary. Pre-Calculus A Final Review Part 2 Calculator Name 31. The price p and the quantity x sold of a certain product obey the demand equation: p = x + 80 where r = xp. What is the revenue to the nearest dollar

More information

MAC 2233, Survey of Calculus, Exam 3 Review This exam covers lectures 21 29,

MAC 2233, Survey of Calculus, Exam 3 Review This exam covers lectures 21 29, MAC 2233, Survey of Calculus, Exam 3 Review This exam covers lectures 21 29, This review includes typical exam problems. It is not designed to be comprehensive, but to be representative of topics covered

More information

Evaluate algebraic expressions and use exponents. Translate verbal phrases into expressions.

Evaluate algebraic expressions and use exponents. Translate verbal phrases into expressions. Algebra 1 Notes Section 1.1: Evaluate Expressions Section 1.3: Write Expressions Name: Hour: Objectives: Section 1.1: (The "NOW" green box) Section 1.3: Evaluate algebraic expressions and use exponents.

More information

Optimization Methods in Management Science

Optimization Methods in Management Science Optimization Methods in Management Science MIT 15.053, Spring 2013 Problem Set 1 Second Group of Students (with first letter of surnames I Z) Problem Set Rules: Due: February 12, 2013 1. Each student should

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

Lecture Notes. Applied Mathematics for Business, Economics, and the Social Sciences (4th Edition); by Frank S. Budnick

Lecture Notes. Applied Mathematics for Business, Economics, and the Social Sciences (4th Edition); by Frank S. Budnick 1 Lecture Notes Applied Mathematics for Business, Economics, and the Social Sciences (4th Edition); by Frank S. Budnick 2 Chapter 2: Linear Equations Definition: Linear equations are first degree equations.

More information

3. (1.2.13, 19, 31) Find the given limit. If necessary, state that the limit does not exist.

3. (1.2.13, 19, 31) Find the given limit. If necessary, state that the limit does not exist. Departmental Review for Survey of Calculus Revised Fall 2013 Directions: All work should be shown and all answers should be exact and simplified (unless stated otherwise) to receive full credit on the

More information

Math Practice Final - solutions

Math Practice Final - solutions Math 151 - Practice Final - solutions 2 1-2 -1 0 1 2 3 Problem 1 Indicate the following from looking at the graph of f(x) above. All answers are small integers, ±, or DNE for does not exist. a) lim x 1

More information

MATH NUMBER SENSE 7 Performance Objective Task Analysis Benchmarks/Assessment Students:

MATH NUMBER SENSE 7 Performance Objective Task Analysis Benchmarks/Assessment Students: Students: 1. Students know the properties of and 1. Read, write and compare rational compute with rational numbers numbers in scientific notation (positive expressed in a variety of forms. and negative

More information

7.1 Solving Systems of Equations

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

More information

Optimization Methods in Management Science

Optimization Methods in Management Science Problem Set Rules: Optimization Methods in Management Science MIT 15.053, Spring 2013 Problem Set 1 (Second Group of Students) Students with first letter of surnames G Z Due: February 12, 2013 1. Each

More information

Ch 1. The Language of Algebra

Ch 1. The Language of Algebra Ch 1 The Language of Algebra 1-1 Writing Expressions and Equations Writing Expressions Buying CDs: 1 CD = $15 2 CD = $15 x 2 3 CD = $15 x 3 n number of CDs? $15 x n Algebraic Expression Writing Expressions

More information

SPRING 2003 Final Exam, Part A

SPRING 2003 Final Exam, Part A Physics 151 SPRING 2003 Final Exam, Part A Roster No.: Score: 17 pts. possible Exam time limit: 2 hours. You may use calculators and both sides of 2 sheets of notes, handwritten only. Closed book; no collaboration.

More information

Looking Ahead to Chapter 4

Looking Ahead to Chapter 4 Looking Ahead to Chapter Focus In Chapter, you will learn about functions and function notation, and you will find the domain and range of a function. You will also learn about real numbers and their properties,

More information

RELATIONS AND FUNCTIONS

RELATIONS AND FUNCTIONS RELATIONS AND FUNCTIONS Definitions A RELATION is any set of ordered pairs. A FUNCTION is a relation in which every input value is paired with exactly one output value. Example 1: Table of Values One way

More information

The Review has 16 questions. Simplify all answers, include all units when appropriate.

The Review has 16 questions. Simplify all answers, include all units when appropriate. Math 1 Midterm Eam Review with Answers Name Date The Review has 16 questions. Simplify all answers, include all units when appropriate. 1. [Sec. 1.] Solve the following problems. a. A company s profit

More information

Fall IM I Exam B

Fall IM I Exam B Fall 2011-2012 IM I Exam B Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Which of the following equations is linear? a. y = 2x - 3 c. 2. What is the

More information

Marginal Propensity to Consume/Save

Marginal Propensity to Consume/Save Marginal Propensity to Consume/Save The marginal propensity to consume is the increase (or decrease) in consumption that an economy experiences when income increases (or decreases). The marginal propensity

More information

2. What are the zeros of (x 2)(x 2 9)? (1) { 3, 2, 3} (2) { 3, 3} (3) { 3, 0, 3} (4) {0, 3} 2

2. What are the zeros of (x 2)(x 2 9)? (1) { 3, 2, 3} (2) { 3, 3} (3) { 3, 0, 3} (4) {0, 3} 2 ALGEBRA 1 Part I Answer all 24 questions in this part. Each correct answer will receive 2 credits. No partial credit will be allowed. For each question, write on the space provided the numeral preceding

More information

Name Date Class A 3.12, B 3.12, 10, 3.24, C 10, 3.12, 3.24, D 3.12, 3.24,

Name Date Class A 3.12, B 3.12, 10, 3.24, C 10, 3.12, 3.24, D 3.12, 3.24, . Which label or labels could replace A In the diagram below? A Rational Numbers only B Rational Numbers or Integers C Integers only D Irrational Numbers. Between which two integers does the value of 88

More information

Calculus with business applications, Lehigh U, Lecture 01 notes Summer

Calculus with business applications, Lehigh U, Lecture 01 notes Summer Calculus with business applications, Lehigh U, Lecture 01 notes Summer 2012 1 Functions 1. A company sells 100 widgets at a price of $20. Sales increase by 5 widgets for each $1 decrease in price. Write

More information

Math 101 Final Exam Review Solutions. Eric Schmutz

Math 101 Final Exam Review Solutions. Eric Schmutz Math 101 Final Exam Review Solutions Eric Schmutz Problem 1. Write an equation of the line passing through (,7) and (-1,1). Let (x 1, y 1 ) = (, 7) and (x, y ) = ( 1, 1). The slope is m = y y 1 x x 1 =

More information

Name. University of Maryland Department of Physics

Name. University of Maryland Department of Physics Name University of Maryland Department of Physics 13. November. 2009 Instructions: Do not open this examination until the proctor tells you to begin. 1. When the proctor tells you to begin, write your

More information

ALGEBRA UNIT 5 LINEAR SYSTEMS SOLVING SYSTEMS: GRAPHICALLY (Day 1)

ALGEBRA UNIT 5 LINEAR SYSTEMS SOLVING SYSTEMS: GRAPHICALLY (Day 1) ALGEBRA UNIT 5 LINEAR SYSTEMS SOLVING SYSTEMS: GRAPHICALLY (Day 1) System: Solution to Systems: Number Solutions Exactly one Infinite No solution Terminology Consistent and Consistent and Inconsistent

More information

1.4 CONCEPT QUESTIONS, page 49

1.4 CONCEPT QUESTIONS, page 49 .4 CONCEPT QUESTIONS, page 49. The intersection must lie in the first quadrant because only the parts of the demand and supply curves in the first quadrant are of interest.. a. The breakeven point P0(

More information

Chapter 4: Systems of Equations and Inequalities

Chapter 4: Systems of Equations and Inequalities Chapter 4: Systems of Equations and Inequalities 4.1 Systems of Equations A system of two linear equations in two variables x and y consist of two equations of the following form: Equation 1: ax + by =

More information

Honors Physics Final Exam Review. Symbol Units Units (if applicable)

Honors Physics Final Exam Review. Symbol Units Units (if applicable) Honors Physics Final Exam Review Name: Date: Write the symbol and the SI units for each of the following: Symbol Units Units (if applicable) 1) Time 2) Distance 3) Speed 4) Displacement 5) Velocity 6)

More information

Chapter 5 Simplifying Formulas and Solving Equations

Chapter 5 Simplifying Formulas and Solving Equations Chapter 5 Simplifying Formulas and Solving Equations Look at the geometry formula for Perimeter of a rectangle P = L W L W. Can this formula be written in a simpler way? If it is true, that we can simplify

More information

AP Physics C 2015 Summer Assignment

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

More information

Chapter 1 Linear Equations

Chapter 1 Linear Equations . Lines. True. True. If the slope of a line is undefined, the line is vertical. 7. The point-slope form of the equation of a line x, y is with slope m containing the point ( ) y y = m ( x x ). Chapter

More information

BLOCK 1 ~ EXPRESSIONS AND EQUATIONS

BLOCK 1 ~ EXPRESSIONS AND EQUATIONS BLOCK 1 ~ EXPRESSIONS AND EQUATIONS TIC-TAC-TOE What s the Process? Create a poster that explains the process of solving a multi-step equation. Small Business Profits Study three different business start-up

More information

Math 101: Final Exam Review Sheet

Math 101: Final Exam Review Sheet Math 101: Final Exam Review Sheet (Answers are at the end.) Exam Coverage: Everything we learned in the course. Exam Date: Friday, December 11, 2015 Exam Time: 10:30 am 12:30 pm (Arrive at least 10 minutes

More information

Lab 4: Gauss Gun Conservation of Energy

Lab 4: Gauss Gun Conservation of Energy Lab 4: Gauss Gun Conservation of Energy Before coming to Lab Read the lab handout Complete the pre-lab assignment and hand in at the beginning of your lab section. The pre-lab is written into this weeks

More information

MATH 1710 College Algebra Final Exam Review

MATH 1710 College Algebra Final Exam Review MATH 7 College Algebra Final Eam Review MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. ) There were 80 people at a pla. The admission price was $

More information

AP Physics First Nine Weeks Review

AP Physics First Nine Weeks Review AP Physics First Nine Weeks Review 1. If F1 is the magnitude of the force exerted by the Earth on a satellite in orbit about the Earth and F2 is the magnitude of the force exerted by the satellite on the

More information

0615AI Common Core State Standards

0615AI Common Core State Standards 0615AI Common Core State Standards 1 The cost of airing a commercial on television is modeled by the function C(n) = 110n + 900, where n is the number of times the commercial is aired. Based on this model,

More information

MAT 210 TEST 2 REVIEW (Ch 12 and 13)

MAT 210 TEST 2 REVIEW (Ch 12 and 13) Class: Date: MAT 0 TEST REVIEW (Ch and ) Multiple Choice Identify the choice that best completes the statement or answers the question.. The population P is currently 0,000 and growing at a rate of 7,000

More information

Turn to Section 4 of your answer sheet to answer the questions in this section.

Turn to Section 4 of your answer sheet to answer the questions in this section. Math Test Calculator MINUTES, QUESTIONS Turn to Section of your answer sheet to answer the questions in this section. For questions -, solve each problem, choose the best answer from the choices provided,

More information

Math 1325 Final Exam Review

Math 1325 Final Exam Review Math 1325 Final Exam Review 1. The following table of values gives a company s annual profits in millions of dollars. Rescale the data so that the year 2003 corresponds to x = 0. Year 2003 2004 2005 2006

More information

Graduation-Required Assessment for Diploma

Graduation-Required Assessment for Diploma Graduation-Required Assessment for Diploma Mathematics Test Book 18pt Item Sampler Student responses in this test book must be entered by a scribe into an accommodated test form in the Data Entry Interface.

More information

PHYSICS 221 SPRING EXAM 1: February 20, 2014; 8:15pm 10:15pm

PHYSICS 221 SPRING EXAM 1: February 20, 2014; 8:15pm 10:15pm PHYSICS 221 SPRING 2014 EXAM 1: February 20, 2014; 8:15pm 10:15pm Name (printed): Recitation Instructor: Section # INSTRUCTIONS: This exam contains 25 multiple-choice questions plus 2 extra credit questions,

More information

https://njctl.org/courses/science/ap-physics-c-mechanics/attachments/summerassignment-3/

https://njctl.org/courses/science/ap-physics-c-mechanics/attachments/summerassignment-3/ AP Physics C Summer Assignment 2017 1. Complete the problem set that is online, entitled, AP C Physics C Summer Assignment 2017. I also gave you a copy of the problem set. You may work in groups as a matter

More information

Answer Key for AP Calculus AB Practice Exam, Section I. Question 23: B

Answer Key for AP Calculus AB Practice Exam, Section I. Question 23: B Answer Key for AP Calculus AB Practice Exam, Section I Question : A Question : D Question : B Question 4: D Question 5: C Question 6: B Question 7: C Question 8: D Question 9: A Question : E Question :

More information

BETHLEHEM CATHOLIC HIGH SCHOOL

BETHLEHEM CATHOLIC HIGH SCHOOL BETHLEHEM CATHOLIC HIGH SCHOOL ALGEBRA SUMMER ASSIGNMENT NAME: - Variables and Expressions For Exercises, choose the correct letter.. The word minus corresponds to which symbol? A. B. C. D.. The phrase

More information

r r Sample Final questions for PS 150

r r Sample Final questions for PS 150 Sample Final questions for PS 150 1) Which of the following is an accurate statement? A) Rotating a vector about an axis passing through the tip of the vector does not change the vector. B) The magnitude

More information