Nature, Motivation and Teaching Methodology for Engineering Problem Solving and Computer Programming

Size: px
Start display at page:

Download "Nature, Motivation and Teaching Methodology for Engineering Problem Solving and Computer Programming"

Transcription

1 Nature, Motivation and Teaching Methodology for Engineering Problem Solving and Computer Programming K. Ming Leung Department of Computer Science and Engineering Polytechnic School of Engineering, NYU K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

2 Why Use Matlab? Five years ago, CS1133 replaced CS1114 as the first computer course for engineering students. It assumes the students have no prior programming experience. It uses Matlab, a computer programming language that is easier to use to write and debug programs. It is especially good for testing ideas and for rapid prototyping. K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

3 Testing New Ideas Consider this problem: for the floating-point numbers between 0 and 1, what is the proportion of them that do not give 1 when they are multiplied by their own reciprocal? I derived a result for a tight upper bound: (1 ln(2))/2. This result can be tested easily in Matlab within seconds. K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

4 Why Use Matlab? (cont.) Producing graphs and other visualizations are handy for interpretation and analysis of results in engineering applications. From quick and simple, to sophisticated publication-quality graphics can be produced. For example, how does the function f (x) = cos(x)exp( 0.3x)) look like from 0 to 15? Matlab has thousands of built-in rather general functions, as well as toolboxes for numerous specialized scientific and engineering applications. Thus Matlab is useful also for upper-level courses in many disciplines (such as solving di erential equations in Mechanical Engineering, processing signal and images in Electrical Engineering). K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

5 The Sunflower Head The arrangement of seeds (florets) on the head of a sunflower can be described mathematically in polar coordinates: 1 r k = p k, k = k, for k =1, 2,...,n, p with the divergent angle = (3 5) ( ), the golden angle. The resulting pattern produces the most e the flower head. How well does this construction work? cient packing of seeds within How sensitive is the dependence on the value of the divergent angle? It turns out the divergent angle cannot deviate by more than 0.04%. 1 Helmut Vogel, A Better Way to Construct the Sunflower Head, Mathematical Bioscience, 44, 179(1979). K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

6 Increasing the divergent angle by 0.04% K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

7 Emphasis on Real Problem-Solving At least 45 percent of undergraduates demonstrated no improvement in critical thinking, complex reasoning, and writing skills in the first two years of college percent showed no progress in four years. 2 Richard Arum and Josipa Roksa, Academically Adrift: Limited Learning on College Campuses, UniversityofChicagoPress,2011 K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

8 Weak Mathematical and Problem-Solving Skills The American work force has some of weakest mathematical and problem-solving skills in the developed world. In a recent survey by a global policy organization, 3 adults in the United States scored far below average and better than only two of 12 other developed comparison countries, Italy and Spain. Worse still, the United States is losing ground in worker training to countries in Europe and Asia whose schools are not just superior to ours but getting steadily better. 3 Organization for Economic Cooperation and Development from K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

9 Problem with Real Problem-Solving The 2003 National Assessment of Adult Literacy is a nationally representative assessment of English literacy among American adults age 16 and older. The study, sponsored by the National Center for Education Statistics, 4 is the nation s most comprehensive measure of adult literacy since the 1992 National Adult Literacy Survey. Over 19,000 adults were asked to answer the following two problems: 4 National Center for Education Statistics website: K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

10 Question 1: Refer to the advertisement for the Carpet Store on page three of the newspaper to answer the following question. Suppose that you purchase DuPont Stainmaster carpet at the sale price. Using the calculator, compute how much in dollars and cents you would save per square yard over the regular price, excluding tax and labor. K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

11 Question 2: Suppose that you want to carpet your living room which is 9 feet by 12 feet, and you purchase DuPont Stainmaster carpet at the sale price. Using the calculator, compute the total cost, excluding tax and labor, of exactly enough carpet to cover your living room floor. K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

12 Problem with Real Problem-Solving (cont.) It was found that only 62.9% of the adults answered the first question correctly, and only 17.6% correctly answered the second question. The same questions were asked in a study conducted in 1992, with basically the same outcome. K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

13 Types of Problems in CS1133 Only word problems are used in CS1133. The following types of problems are not used matching problems true-or-false problems fill-in-the-blank problems multiple-choice problems Most the CS1133 problems are real-world problems. K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

14 General Guiding Principles Whenever there is a freedom of choice, exercise ones choice wisely. Computer programs need to be modified and updated throughout its life history as newer versions. They must be written as flexible as possible (no hardwiring). A programmer should not do anything that can be done by a computer. K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

15 General Problem-Solving Skills Emphasized General problem-solving skills that have wide applications beyond computer programming are emphasized: Read problem statement very carefully. Know what the given quantities are, the assumptions, and the form and type of output results. If feasible, examine all possible solutions. Try working forward from the given quantities and backward from the required output results. Hand-check each step in the solution of the problem. Solve a simplified version of the given problem. Make up a simplified version that one knows how to solve. K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

16 Example: while the sum is less than 1 Conduct the following computer experiment numerous times: Each time repeatedly pick a random number from 0 to 1 until the sum is no longer less than 1. Find the average number of random numbers needed. Find the average sum. 2 n = 3 n = 2 n = 2 n = 4 n = Stone slabs of random thicknesses are used to build a fence whose height must always be greater than 1 meter. K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

17 Example: Closer to the center Find the fraction of points inside a square that lie closer to its center than to any one of its edges y x A square castle surrounded by water in the middle of a lake. To help the people who lives near the center of the castle, a well of a certain depth is to be dug. To know how deep to dig, we need an estimation of the percentage of people who live near the well. K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

18 Example: Evaluate (1 x) 6 for a given x Use various di erent values of x and evaluate the following equivalent expressions: 1 x 6 6x x 4 20x x 2 6x +1 2 (((((x 6)x + 15)x 20)x + 15)x 6)x +1 3 (1 x) 6 Do they all give the same result? Check the case where x is very close to 1. If the three answers do not agree, which one do you trust? Any polynomial can be written in the two equivalent forms as shown in expressions 1 and 2. In general a polynomial is not expected to have a compact factorized form as shown in expression 3. K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

19 Example: Fraction of points within a hypercube that lies near the edge? Given a unit hypercube (a unit cube in an n-dimensional space), find the fraction of the points that lies near its edge (within a distance of 0.01 from a boundary). What happens as the dimension of space increases? What does the result tell you about high-dimensional space? K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

20 Example: Average distance between 2 arbitrary points in a hypercube Find the average distance between two arbitrarily chosen points inside a hypercube. What happens as the dimension of space increases? What does the result tell you about high-dimensional space? K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

21 Example: Angle between 2 randomly chosen vectors in a hypercube Find the angles between pairs of arbitrarily chosen vectors lying inside a hypercube. Try 20 pairs. What happens as the dimension of space increases? What does the result tell you about high-dimensional space? K. Ming Leung (Department of Computer Science and EngineeringPolytechnic CS1133 School of Engineering, NYU) / 23

DIMENSIONAL ANALYSIS #2

DIMENSIONAL ANALYSIS #2 DIMENSIONAL ANALYSIS #2 Area is measured in square units, such as square feet or square centimeters. These units can be abbreviated as ft 2 (square feet) and cm 2 (square centimeters). For example, we

More information

parent ROADMAP MATHEMATICS SUPPORTING YOUR CHILD IN HIGH SCHOOL

parent ROADMAP MATHEMATICS SUPPORTING YOUR CHILD IN HIGH SCHOOL parent ROADMAP MATHEMATICS SUPPORTING YOUR CHILD IN HIGH SCHOOL HS America s schools are working to provide higher quality instruction than ever before. The way we taught students in the past simply does

More information

Algebra I. In this technological age, mathematics is more important than ever. When students

Algebra I. In this technological age, mathematics is more important than ever. When students In this technological age, mathematics is more important than ever. When students leave school, they are more and more likely to use mathematics in their work and everyday lives operating computer equipment,

More information

7.2 Quadratic Equations

7.2 Quadratic Equations 476 CHAPTER 7 Graphs, Equations, and Inequalities 7. Quadratic Equations Now Work the Are You Prepared? problems on page 48. OBJECTIVES 1 Solve Quadratic Equations by Factoring (p. 476) Solve Quadratic

More information

ALGEBRA I FINAL EXAM

ALGEBRA I FINAL EXAM ALGEBRA I FINAL EXAM A passing score of 9 on this test allows a student to register for geometry. JUNE 00 YOU MAY WRITE ON THIS TEST . Solve: 7= 6 6 6. Solve: =. One tai cab charges $.00 plus 7 cents per

More information

APPLICATIONS AND MODELING WITH QUADRATIC EQUATIONS

APPLICATIONS AND MODELING WITH QUADRATIC EQUATIONS APPLICATIONS AND MODELING WITH QUADRATIC EQUATIONS Now that we are starting to feel comfortable with the factoring process, the question becomes what do we use factoring to do? There are a variety of classic

More information

Problem Solving and Data Analysis

Problem Solving and Data Analysis Chapter 20 Problem Solving and Data Analysis The Problem Solving and Data Analysis section of the SAT Math Test assesses your ability to use your math understanding and skills to solve problems set in

More information

Florida Math for College Readiness

Florida Math for College Readiness Core Florida Math for College Readiness Florida Math for College Readiness provides a fourth-year math curriculum focused on developing the mastery of skills identified as critical to postsecondary readiness

More information

The program also provides supplemental modules on topics in geometry and probability and statistics.

The program also provides supplemental modules on topics in geometry and probability and statistics. Algebra 1 Course Overview Students develop algebraic fluency by learning the skills needed to solve equations and perform important manipulations with numbers, variables, equations, and inequalities. Students

More information

6.4 Factoring Polynomials

6.4 Factoring Polynomials Name Class Date 6.4 Factoring Polynomials Essential Question: What are some ways to factor a polynomial, and how is factoring useful? Resource Locker Explore Analyzing a Visual Model for Polynomial Factorization

More information

MA 1125 Lecture 14 - Expected Values. Friday, February 28, 2014. Objectives: Introduce expected values.

MA 1125 Lecture 14 - Expected Values. Friday, February 28, 2014. Objectives: Introduce expected values. MA 5 Lecture 4 - Expected Values Friday, February 2, 24. Objectives: Introduce expected values.. Means, Variances, and Standard Deviations of Probability Distributions Two classes ago, we computed the

More information

Microsoft Mathematics for Educators:

Microsoft Mathematics for Educators: Microsoft Mathematics for Educators: Familiarize yourself with the interface When you first open Microsoft Mathematics, you ll see the following elements displayed: 1. The Calculator Pad which includes

More information

Algebra 1 Course Information

Algebra 1 Course Information Course Information Course Description: Students will study patterns, relations, and functions, and focus on the use of mathematical models to understand and analyze quantitative relationships. Through

More information

SQUARE-SQUARE ROOT AND CUBE-CUBE ROOT

SQUARE-SQUARE ROOT AND CUBE-CUBE ROOT UNIT 3 SQUAREQUARE AND CUBEUBE (A) Main Concepts and Results A natural number is called a perfect square if it is the square of some natural number. i.e., if m = n 2, then m is a perfect square where m

More information

1.3 Algebraic Expressions

1.3 Algebraic Expressions 1.3 Algebraic Expressions A polynomial is an expression of the form: a n x n + a n 1 x n 1 +... + a 2 x 2 + a 1 x + a 0 The numbers a 1, a 2,..., a n are called coefficients. Each of the separate parts,

More information

Minnesota Academic Standards

Minnesota Academic Standards A Correlation of to the Minnesota Academic Standards Grades K-6 G/M-204 Introduction This document demonstrates the high degree of success students will achieve when using Scott Foresman Addison Wesley

More information

Quick Reference ebook

Quick Reference ebook This file is distributed FREE OF CHARGE by the publisher Quick Reference Handbooks and the author. Quick Reference ebook Click on Contents or Index in the left panel to locate a topic. The math facts listed

More information

Introduction. Percent Increase/Decrease. Module #1: Percents Bus 130 1

Introduction. Percent Increase/Decrease. Module #1: Percents Bus 130 1 Module #1: Percents Bus 130 1 Introduction In this module, we are going to use the process of excavating soil to demonstrate the mathematical concept of percent changes and problem solving skills. When

More information

COMPETENCY TEST SAMPLE TEST. A scientific, non-graphing calculator is required for this test. C = pd or. A = pr 2. A = 1 2 bh

COMPETENCY TEST SAMPLE TEST. A scientific, non-graphing calculator is required for this test. C = pd or. A = pr 2. A = 1 2 bh BASIC MATHEMATICS COMPETENCY TEST SAMPLE TEST 2004 A scientific, non-graphing calculator is required for this test. The following formulas may be used on this test: Circumference of a circle: C = pd or

More information

A Quick Algebra Review

A Quick Algebra Review 1. Simplifying Epressions. Solving Equations 3. Problem Solving 4. Inequalities 5. Absolute Values 6. Linear Equations 7. Systems of Equations 8. Laws of Eponents 9. Quadratics 10. Rationals 11. Radicals

More information

7-2 Solving Exponential Equations and Inequalities. Solve each equation. 1. 3 5x = 27 2x 4 SOLUTION:

7-2 Solving Exponential Equations and Inequalities. Solve each equation. 1. 3 5x = 27 2x 4 SOLUTION: 7-2 Solving Exponential Equations and Inequalities Solve each equation. 1. 3 5x = 27 2x 4 3. 2 6x = 32 x 2 12 2. 16 2y 3 = 4 y + 1 10 4. 49 x + 5 = 7 8x 6 3. 2 6x = 32 x 2 5. SCIENCE Mitosis is a process

More information

Partial Fractions Decomposition

Partial Fractions Decomposition Partial Fractions Decomposition Dr. Philippe B. Laval Kennesaw State University August 6, 008 Abstract This handout describes partial fractions decomposition and how it can be used when integrating rational

More information

Section 4-7 Exponential and Logarithmic Equations. Solving an Exponential Equation. log 2. 3 2 log 5. log 2 1.4406

Section 4-7 Exponential and Logarithmic Equations. Solving an Exponential Equation. log 2. 3 2 log 5. log 2 1.4406 314 4 INVERSE FUNCTIONS; EXPONENTIAL AND LOGARITHMIC FUNCTIONS Section 4-7 Exponential and Logarithmic Equations Exponential Equations Logarithmic Equations Change of Base Equations involving exponential

More information

Method To Solve Linear, Polynomial, or Absolute Value Inequalities:

Method To Solve Linear, Polynomial, or Absolute Value Inequalities: Solving Inequalities An inequality is the result of replacing the = sign in an equation with ,, or. For example, 3x 2 < 7 is a linear inequality. We call it linear because if the < were replaced with

More information

Big Bend Community College. Beginning Algebra MPC 095. Lab Notebook

Big Bend Community College. Beginning Algebra MPC 095. Lab Notebook Big Bend Community College Beginning Algebra MPC 095 Lab Notebook Beginning Algebra Lab Notebook by Tyler Wallace is licensed under a Creative Commons Attribution 3.0 Unported License. Permissions beyond

More information

Explore architectural design and act as architects to create a floor plan of a redesigned classroom.

Explore architectural design and act as architects to create a floor plan of a redesigned classroom. ARCHITECTURAL DESIGN AT A GLANCE Explore architectural design and act as architects to create a floor plan of a redesigned classroom. OBJECTIVES: Students will: Use prior knowledge to discuss functions

More information

SOLVING EQUATIONS WITH RADICALS AND EXPONENTS 9.5. section ( 3 5 3 2 )( 3 25 3 10 3 4 ). The Odd-Root Property

SOLVING EQUATIONS WITH RADICALS AND EXPONENTS 9.5. section ( 3 5 3 2 )( 3 25 3 10 3 4 ). The Odd-Root Property 498 (9 3) Chapter 9 Radicals and Rational Exponents Replace the question mark by an expression that makes the equation correct. Equations involving variables are to be identities. 75. 6 76. 3?? 1 77. 1

More information

Chapter 111. Texas Essential Knowledge and Skills for Mathematics. Subchapter B. Middle School

Chapter 111. Texas Essential Knowledge and Skills for Mathematics. Subchapter B. Middle School Middle School 111.B. Chapter 111. Texas Essential Knowledge and Skills for Mathematics Subchapter B. Middle School Statutory Authority: The provisions of this Subchapter B issued under the Texas Education

More information

Geometry and Measurement

Geometry and Measurement The student will be able to: Geometry and Measurement 1. Demonstrate an understanding of the principles of geometry and measurement and operations using measurements Use the US system of measurement for

More information

SMT 2014 Algebra Test Solutions February 15, 2014

SMT 2014 Algebra Test Solutions February 15, 2014 1. Alice and Bob are painting a house. If Alice and Bob do not take any breaks, they will finish painting the house in 20 hours. If, however, Bob stops painting once the house is half-finished, then the

More information

MEASURES OF VARIATION

MEASURES OF VARIATION NORMAL DISTRIBTIONS MEASURES OF VARIATION In statistics, it is important to measure the spread of data. A simple way to measure spread is to find the range. But statisticians want to know if the data are

More information

How do you compare numbers? On a number line, larger numbers are to the right and smaller numbers are to the left.

How do you compare numbers? On a number line, larger numbers are to the right and smaller numbers are to the left. The verbal answers to all of the following questions should be memorized before completion of pre-algebra. Answers that are not memorized will hinder your ability to succeed in algebra 1. Number Basics

More information

Approximation Algorithms

Approximation Algorithms Approximation Algorithms or: How I Learned to Stop Worrying and Deal with NP-Completeness Ong Jit Sheng, Jonathan (A0073924B) March, 2012 Overview Key Results (I) General techniques: Greedy algorithms

More information

MATH 0110 Developmental Math Skills Review, 1 Credit, 3 hours lab

MATH 0110 Developmental Math Skills Review, 1 Credit, 3 hours lab MATH 0110 Developmental Math Skills Review, 1 Credit, 3 hours lab MATH 0110 is established to accommodate students desiring non-course based remediation in developmental mathematics. This structure will

More information

AP CALCULUS AB 2008 SCORING GUIDELINES

AP CALCULUS AB 2008 SCORING GUIDELINES AP CALCULUS AB 2008 SCORING GUIDELINES Question 1 Let R be the region bounded by the graphs of y = sin( π x) and y = x 4 x, as shown in the figure above. (a) Find the area of R. (b) The horizontal line

More information

POLYNOMIALS and FACTORING

POLYNOMIALS and FACTORING POLYNOMIALS and FACTORING Exponents ( days); 1. Evaluate exponential expressions. Use the product rule for exponents, 1. How do you remember the rules for exponents?. How do you decide which rule to use

More information

The Utah Basic Skills Competency Test Framework Mathematics Content and Sample Questions

The Utah Basic Skills Competency Test Framework Mathematics Content and Sample Questions The Utah Basic Skills Competency Test Framework Mathematics Content and Questions Utah law (53A-1-611) requires that all high school students pass The Utah Basic Skills Competency Test in order to receive

More information

Entity Resolution Fingerprints Similar News Articles. Cloud and Big Data Summer School, Stockholm, Aug., 2015 Jeffrey D. Ullman

Entity Resolution Fingerprints Similar News Articles. Cloud and Big Data Summer School, Stockholm, Aug., 2015 Jeffrey D. Ullman Entity Resolution Fingerprints Similar News Articles Cloud and Big Data Summer School, Stockholm, Aug., 2015 Jeffrey D. Ullman 2 The entity-resolution problem is to examine a collection of records and

More information

Algebra 1 2008. Academic Content Standards Grade Eight and Grade Nine Ohio. Grade Eight. Number, Number Sense and Operations Standard

Algebra 1 2008. Academic Content Standards Grade Eight and Grade Nine Ohio. Grade Eight. Number, Number Sense and Operations Standard Academic Content Standards Grade Eight and Grade Nine Ohio Algebra 1 2008 Grade Eight STANDARDS Number, Number Sense and Operations Standard Number and Number Systems 1. Use scientific notation to express

More information

MBA Jump Start Program

MBA Jump Start Program MBA Jump Start Program Module 2: Mathematics Thomas Gilbert Mathematics Module Online Appendix: Basic Mathematical Concepts 2 1 The Number Spectrum Generally we depict numbers increasing from left to right

More information

Problem of the Month: Digging Dinosaurs

Problem of the Month: Digging Dinosaurs : The Problems of the Month (POM) are used in a variety of ways to promote problem solving and to foster the first standard of mathematical practice from the Common Core State Standards: Make sense of

More information

Grade 6 Mathematics Assessment. Eligible Texas Essential Knowledge and Skills

Grade 6 Mathematics Assessment. Eligible Texas Essential Knowledge and Skills Grade 6 Mathematics Assessment Eligible Texas Essential Knowledge and Skills STAAR Grade 6 Mathematics Assessment Mathematical Process Standards These student expectations will not be listed under a separate

More information

Open-Ended Problem-Solving Projections

Open-Ended Problem-Solving Projections MATHEMATICS Open-Ended Problem-Solving Projections Organized by TEKS Categories TEKSING TOWARD STAAR 2014 GRADE 7 PROJECTION MASTERS for PROBLEM-SOLVING OVERVIEW The Projection Masters for Problem-Solving

More information

Chapter 19. General Matrices. An n m matrix is an array. a 11 a 12 a 1m a 21 a 22 a 2m A = a n1 a n2 a nm. The matrix A has n row vectors

Chapter 19. General Matrices. An n m matrix is an array. a 11 a 12 a 1m a 21 a 22 a 2m A = a n1 a n2 a nm. The matrix A has n row vectors Chapter 9. General Matrices An n m matrix is an array a a a m a a a m... = [a ij]. a n a n a nm The matrix A has n row vectors and m column vectors row i (A) = [a i, a i,..., a im ] R m a j a j a nj col

More information

Copyrighted Material. Chapter 1 DEGREE OF A CURVE

Copyrighted Material. Chapter 1 DEGREE OF A CURVE Chapter 1 DEGREE OF A CURVE Road Map The idea of degree is a fundamental concept, which will take us several chapters to explore in depth. We begin by explaining what an algebraic curve is, and offer two

More information

6.4 Normal Distribution

6.4 Normal Distribution Contents 6.4 Normal Distribution....................... 381 6.4.1 Characteristics of the Normal Distribution....... 381 6.4.2 The Standardized Normal Distribution......... 385 6.4.3 Meaning of Areas under

More information

Algebra 1 Course Title

Algebra 1 Course Title Algebra 1 Course Title Course- wide 1. What patterns and methods are being used? Course- wide 1. Students will be adept at solving and graphing linear and quadratic equations 2. Students will be adept

More information

Precalculus Orientation and FAQ

Precalculus Orientation and FAQ Precalculus Orientation and FAQ MATH 1011 (Precalculus) is a four hour 3 credit course that prepares a student for Calculus. Topics covered include linear, quadratic, polynomial, rational, exponential,

More information

Performance Level Descriptors Grade 6 Mathematics

Performance Level Descriptors Grade 6 Mathematics Performance Level Descriptors Grade 6 Mathematics Multiplying and Dividing with Fractions 6.NS.1-2 Grade 6 Math : Sub-Claim A The student solves problems involving the Major Content for grade/course with

More information

Representation of functions as power series

Representation of functions as power series Representation of functions as power series Dr. Philippe B. Laval Kennesaw State University November 9, 008 Abstract This document is a summary of the theory and techniques used to represent functions

More information

Social Media Mining. Network Measures

Social Media Mining. Network Measures Klout Measures and Metrics 22 Why Do We Need Measures? Who are the central figures (influential individuals) in the network? What interaction patterns are common in friends? Who are the like-minded users

More information

Name DATE Per TEST REVIEW. 2. A picture that shows how two variables are related is called a.

Name DATE Per TEST REVIEW. 2. A picture that shows how two variables are related is called a. Name DATE Per Completion Complete each statement. TEST REVIEW 1. The two most common systems of standardized units for expressing measurements are the system and the system. 2. A picture that shows how

More information

Year 9 mathematics test

Year 9 mathematics test Ma KEY STAGE 3 Year 9 mathematics test Tier 6 8 Paper 1 Calculator not allowed First name Last name Class Date Please read this page, but do not open your booklet until your teacher tells you to start.

More information

Correlation key concepts:

Correlation key concepts: CORRELATION Correlation key concepts: Types of correlation Methods of studying correlation a) Scatter diagram b) Karl pearson s coefficient of correlation c) Spearman s Rank correlation coefficient d)

More information

I remember that when I

I remember that when I 8. Airthmetic and Geometric Sequences 45 8. ARITHMETIC AND GEOMETRIC SEQUENCES Whenever you tell me that mathematics is just a human invention like the game of chess I would like to believe you. But I

More information

Algebra Unpacked Content For the new Common Core standards that will be effective in all North Carolina schools in the 2012-13 school year.

Algebra Unpacked Content For the new Common Core standards that will be effective in all North Carolina schools in the 2012-13 school year. This document is designed to help North Carolina educators teach the Common Core (Standard Course of Study). NCDPI staff are continually updating and improving these tools to better serve teachers. Algebra

More information

Mathematics as Reasoning Students will use reasoning skills to determine the best method for maximizing area.

Mathematics as Reasoning Students will use reasoning skills to determine the best method for maximizing area. Title: A Pen for Penny Brief Overview: This unit is a reinforcement of the concepts of area and perimeter of rectangles. Methods for maximizing area while perimeter remains the same are also included.

More information

What are the place values to the left of the decimal point and their associated powers of ten?

What are the place values to the left of the decimal point and their associated powers of ten? The verbal answers to all of the following questions should be memorized before completion of algebra. Answers that are not memorized will hinder your ability to succeed in geometry and algebra. (Everything

More information

If A is divided by B the result is 2/3. If B is divided by C the result is 4/7. What is the result if A is divided by C?

If A is divided by B the result is 2/3. If B is divided by C the result is 4/7. What is the result if A is divided by C? Problem 3 If A is divided by B the result is 2/3. If B is divided by C the result is 4/7. What is the result if A is divided by C? Suggested Questions to ask students about Problem 3 The key to this question

More information

SAT Math Strategies Quiz

SAT Math Strategies Quiz When you are stumped on an SAT or ACT math question, there are two very useful strategies that may help you to get the correct answer: 1) work with the answers; and 2) plug in real numbers. This review

More information

Ratios and Proportional Relationships Set 1: Ratio, Proportion, and Scale... 1 Set 2: Proportional Relationships... 8

Ratios and Proportional Relationships Set 1: Ratio, Proportion, and Scale... 1 Set 2: Proportional Relationships... 8 Table of Contents Introduction...v Standards Correlations... viii Materials List... x... 1 Set 2: Proportional Relationships... 8 The Number System Set 1: Integers and Absolute Value... 15 Set 2: Comparing

More information

MATHEMATICS FOR ENGINEERING BASIC ALGEBRA

MATHEMATICS FOR ENGINEERING BASIC ALGEBRA MATHEMATICS FOR ENGINEERING BASIC ALGEBRA TUTORIAL 3 EQUATIONS This is the one of a series of basic tutorials in mathematics aimed at beginners or anyone wanting to refresh themselves on fundamentals.

More information

The GED math test gives you a page of math formulas that

The GED math test gives you a page of math formulas that Math Smart 643 The GED Math Formulas The GED math test gives you a page of math formulas that you can use on the test, but just seeing the formulas doesn t do you any good. The important thing is understanding

More information

Definition 8.1 Two inequalities are equivalent if they have the same solution set. Add or Subtract the same value on both sides of the inequality.

Definition 8.1 Two inequalities are equivalent if they have the same solution set. Add or Subtract the same value on both sides of the inequality. 8 Inequalities Concepts: Equivalent Inequalities Linear and Nonlinear Inequalities Absolute Value Inequalities (Sections 4.6 and 1.1) 8.1 Equivalent Inequalities Definition 8.1 Two inequalities are equivalent

More information

Scope and Sequence KA KB 1A 1B 2A 2B 3A 3B 4A 4B 5A 5B 6A 6B

Scope and Sequence KA KB 1A 1B 2A 2B 3A 3B 4A 4B 5A 5B 6A 6B Scope and Sequence Earlybird Kindergarten, Standards Edition Primary Mathematics, Standards Edition Copyright 2008 [SingaporeMath.com Inc.] The check mark indicates where the topic is first introduced

More information

SECTION 1-6 Quadratic Equations and Applications

SECTION 1-6 Quadratic Equations and Applications 58 Equations and Inequalities Supply the reasons in the proofs for the theorems stated in Problems 65 and 66. 65. Theorem: The complex numbers are commutative under addition. Proof: Let a bi and c di be

More information

CRLS Mathematics Department Algebra I Curriculum Map/Pacing Guide

CRLS Mathematics Department Algebra I Curriculum Map/Pacing Guide Curriculum Map/Pacing Guide page 1 of 14 Quarter I start (CP & HN) 170 96 Unit 1: Number Sense and Operations 24 11 Totals Always Include 2 blocks for Review & Test Operating with Real Numbers: How are

More information

Solving Geometric Applications

Solving Geometric Applications 1.8 Solving Geometric Applications 1.8 OBJECTIVES 1. Find a perimeter 2. Solve applications that involve perimeter 3. Find the area of a rectangular figure 4. Apply area formulas 5. Apply volume formulas

More information

Task: Representing the National Debt 7 th grade

Task: Representing the National Debt 7 th grade Tennessee Department of Education Task: Representing the National Debt 7 th grade Rachel s economics class has been studying the national debt. The day her class discussed it, the national debt was $16,743,576,637,802.93.

More information

Common Core Unit Summary Grades 6 to 8

Common Core Unit Summary Grades 6 to 8 Common Core Unit Summary Grades 6 to 8 Grade 8: Unit 1: Congruence and Similarity- 8G1-8G5 rotations reflections and translations,( RRT=congruence) understand congruence of 2 d figures after RRT Dilations

More information

Assignment 5 - Due Friday March 6

Assignment 5 - Due Friday March 6 Assignment 5 - Due Friday March 6 (1) Discovering Fibonacci Relationships By experimenting with numerous examples in search of a pattern, determine a simple formula for (F n+1 ) 2 + (F n ) 2 that is, a

More information

Math 1 Chapter 3 notes.notebook. October 22, 2012. Examples

Math 1 Chapter 3 notes.notebook. October 22, 2012. Examples Chapter 3 SOLVING LINEAR EQUATIONS!! Lesson 3 1 Solve one step equations Key Vocab: Inverse operations: are two operations that undo each other. Addition and subtraction Multiplication and division equivalent

More information

Transition To College Mathematics

Transition To College Mathematics Transition To College Mathematics In Support of Kentucky s College and Career Readiness Program Northern Kentucky University Kentucky Online Testing (KYOTE) Group Steve Newman Mike Waters Janis Broering

More information

Paper 1. Calculator not allowed. Mathematics test. First name. Last name. School. Remember KEY STAGE 3 TIER 4 6

Paper 1. Calculator not allowed. Mathematics test. First name. Last name. School. Remember KEY STAGE 3 TIER 4 6 Ma KEY STAGE 3 Mathematics test TIER 4 6 Paper 1 Calculator not allowed First name Last name School 2007 Remember The test is 1 hour long. You must not use a calculator for any question in this test. You

More information

SUNY ECC. ACCUPLACER Preparation Workshop. Algebra Skills

SUNY ECC. ACCUPLACER Preparation Workshop. Algebra Skills SUNY ECC ACCUPLACER Preparation Workshop Algebra Skills Gail A. Butler Ph.D. Evaluating Algebraic Epressions Substitute the value (#) in place of the letter (variable). Follow order of operations!!! E)

More information

A Second Course in Mathematics Concepts for Elementary Teachers: Theory, Problems, and Solutions

A Second Course in Mathematics Concepts for Elementary Teachers: Theory, Problems, and Solutions A Second Course in Mathematics Concepts for Elementary Teachers: Theory, Problems, and Solutions Marcel B. Finan Arkansas Tech University c All Rights Reserved First Draft February 8, 2006 1 Contents 25

More information

2Digital tablets or computer scanners can

2Digital tablets or computer scanners can Appendix A Measuring Lake Surface Area Lake surface area can be measured with a bathymetric map using any of the following techniques: 1One of the most accurate methods is to use a planimeter to trace

More information

Sample Problems. Practice Problems

Sample Problems. Practice Problems Lecture Notes Quadratic Word Problems page 1 Sample Problems 1. The sum of two numbers is 31, their di erence is 41. Find these numbers.. The product of two numbers is 640. Their di erence is 1. Find these

More information

In this chapter, you will learn improvement curve concepts and their application to cost and price analysis.

In this chapter, you will learn improvement curve concepts and their application to cost and price analysis. 7.0 - Chapter Introduction In this chapter, you will learn improvement curve concepts and their application to cost and price analysis. Basic Improvement Curve Concept. You may have learned about improvement

More information

2. Simple Linear Regression

2. Simple Linear Regression Research methods - II 3 2. Simple Linear Regression Simple linear regression is a technique in parametric statistics that is commonly used for analyzing mean response of a variable Y which changes according

More information

Inflation. Chapter 8. 8.1 Money Supply and Demand

Inflation. Chapter 8. 8.1 Money Supply and Demand Chapter 8 Inflation This chapter examines the causes and consequences of inflation. Sections 8.1 and 8.2 relate inflation to money supply and demand. Although the presentation differs somewhat from that

More information

13. Write the decimal approximation of 9,000,001 9,000,000, rounded to three significant

13. Write the decimal approximation of 9,000,001 9,000,000, rounded to three significant æ If 3 + 4 = x, then x = 2 gold bar is a rectangular solid measuring 2 3 4 It is melted down, and three equal cubes are constructed from this gold What is the length of a side of each cube? 3 What is the

More information

Information Theory and Coding Prof. S. N. Merchant Department of Electrical Engineering Indian Institute of Technology, Bombay

Information Theory and Coding Prof. S. N. Merchant Department of Electrical Engineering Indian Institute of Technology, Bombay Information Theory and Coding Prof. S. N. Merchant Department of Electrical Engineering Indian Institute of Technology, Bombay Lecture - 17 Shannon-Fano-Elias Coding and Introduction to Arithmetic Coding

More information

Project 16 - PLAYING THE STOCK MARKET FOR GAIN OR LOSS

Project 16 - PLAYING THE STOCK MARKET FOR GAIN OR LOSS Project 16 - PLAYING THE STOCK MARKET FOR GAIN OR LOSS Introduction: We hear of people who invest in stock and make a fortune. We do not hear much about the people who buy stock and lose money, sometimes

More information

Possible Stage Two Mathematics Test Topics

Possible Stage Two Mathematics Test Topics Possible Stage Two Mathematics Test Topics The Stage Two Mathematics Test questions are designed to be answerable by a good problem-solver with a strong mathematics background. It is based mainly on material

More information

Math Review. for the Quantitative Reasoning Measure of the GRE revised General Test

Math Review. for the Quantitative Reasoning Measure of the GRE revised General Test Math Review for the Quantitative Reasoning Measure of the GRE revised General Test www.ets.org Overview This Math Review will familiarize you with the mathematical skills and concepts that are important

More information

Figure 1.1 Vector A and Vector F

Figure 1.1 Vector A and Vector F CHAPTER I VECTOR QUANTITIES Quantities are anything which can be measured, and stated with number. Quantities in physics are divided into two types; scalar and vector quantities. Scalar quantities have

More information

Algebra I Vocabulary Cards

Algebra I Vocabulary Cards Algebra I Vocabulary Cards Table of Contents Expressions and Operations Natural Numbers Whole Numbers Integers Rational Numbers Irrational Numbers Real Numbers Absolute Value Order of Operations Expression

More information

Lines & Planes. Packages: linalg, plots. Commands: evalm, spacecurve, plot3d, display, solve, implicitplot, dotprod, seq, implicitplot3d.

Lines & Planes. Packages: linalg, plots. Commands: evalm, spacecurve, plot3d, display, solve, implicitplot, dotprod, seq, implicitplot3d. Lines & Planes Introduction and Goals: This lab is simply to give you some practice with plotting straight lines and planes and how to do some basic problem solving with them. So the exercises will be

More information

PCHS ALGEBRA PLACEMENT TEST

PCHS ALGEBRA PLACEMENT TEST MATHEMATICS Students must pass all math courses with a C or better to advance to the next math level. Only classes passed with a C or better will count towards meeting college entrance requirements. If

More information

" Y. Notation and Equations for Regression Lecture 11/4. Notation:

 Y. Notation and Equations for Regression Lecture 11/4. Notation: Notation: Notation and Equations for Regression Lecture 11/4 m: The number of predictor variables in a regression Xi: One of multiple predictor variables. The subscript i represents any number from 1 through

More information

17. SIMPLE LINEAR REGRESSION II

17. SIMPLE LINEAR REGRESSION II 17. SIMPLE LINEAR REGRESSION II The Model In linear regression analysis, we assume that the relationship between X and Y is linear. This does not mean, however, that Y can be perfectly predicted from X.

More information

Mathematics. Mathematical Practices

Mathematics. Mathematical Practices Mathematical Practices 1. Make sense of problems and persevere in solving them. 2. Reason abstractly and quantitatively. 3. Construct viable arguments and critique the reasoning of others. 4. Model with

More information

YOU CAN COUNT ON NUMBER LINES

YOU CAN COUNT ON NUMBER LINES Key Idea 2 Number and Numeration: Students use number sense and numeration to develop an understanding of multiple uses of numbers in the real world, the use of numbers to communicate mathematically, and

More information

Simple Examples. This is the information that we are given. To find the answer we are to solve an equation in one variable, x.

Simple Examples. This is the information that we are given. To find the answer we are to solve an equation in one variable, x. Worksheet. Solving Equations in One Variable Section 1 Simple Examples You are on your way to Brisbane from Sydney, and you know that the trip is 1100 km. You pass a sign that says that Brisbane is now

More information

Veterans Upward Bound Algebra I Concepts - Honors

Veterans Upward Bound Algebra I Concepts - Honors Veterans Upward Bound Algebra I Concepts - Honors Brenda Meery Kaitlyn Spong Say Thanks to the Authors Click http://www.ck12.org/saythanks (No sign in required) www.ck12.org Chapter 6. Factoring CHAPTER

More information

Chapter 3 Review Math 1030

Chapter 3 Review Math 1030 Section A.1: Three Ways of Using Percentages Using percentages We can use percentages in three different ways: To express a fraction of something. For example, A total of 10, 000 newspaper employees, 2.6%

More information

Biggar High School Mathematics Department. National 5 Learning Intentions & Success Criteria: Assessing My Progress

Biggar High School Mathematics Department. National 5 Learning Intentions & Success Criteria: Assessing My Progress Biggar High School Mathematics Department National 5 Learning Intentions & Success Criteria: Assessing My Progress Expressions & Formulae Topic Learning Intention Success Criteria I understand this Approximation

More information

DRAFT. New York State Testing Program Grade 8 Common Core Mathematics Test. Released Questions with Annotations

DRAFT. New York State Testing Program Grade 8 Common Core Mathematics Test. Released Questions with Annotations DRAFT New York State Testing Program Grade 8 Common Core Mathematics Test Released Questions with Annotations August 2014 Developed and published under contract with the New York State Education Department

More information