MATH 112 Guided Workbook

Size: px
Start display at page:

Download "MATH 112 Guided Workbook"

Transcription

1 MATH 112 Guided Workbook Department of Mathematics The University of Arizona Academic Year Table of Contents Table of Contents... 1 Syllabus Highlights... 3 Quick Reference Guide... 4 Strategies for Checking Answers... 5 Quadratic Formula Program for Graphing Calculators... 6 Quadratic Formula - TI Quadratic Formula - TI 83, TI 83 Plus, and TI 84 Plus... 7 Quadratic Formula - TI 85, TI Quadratic Formula Casio models... 9 CHAPTER 1 Equations, Inequalities, and Applications Section 1.1 Linear Equations Section 1.2 Applications of Linear Equations Section 1.4 Quadratic Equations Section 1.5 Applications of Quadratic Equations CHAPTER 2 The Rectangular Coordinate System, Lines, and Circles Section 2.3 Lines Section 2.4 Parallel and Perpendicular Lines CHAPTER 3 Functions Section 3.1 Relations and Functions Section 3.2 Properties of a Function s Graph Section 3.3 Graphs of Basic Functions; Piecewise Functions Section 3.4 Transformations of Functions Section 3.5 The Algebra of Functions; Composite Functions Section 3.6 One-to-One Functions; Inverse Functions Page 1

2 CHAPTER 4 Polynomial and Rational Functions Section 4.1 Quadratic Functions Section 4.2 Applications and Modeling of Quadratic Functions Section 4.3 The Graphs of Polynomial Functions Section 4.4 Synthetic Division; The Remainder and Factor Theorems Section 4.6 Rational Functions and Their Graphs CHAPTER 5 Exponential and Logarithmic Functions and Equations Section 5.1 Exponential Functions Section 5.2 The Natural Exponential Function Section 5.3 Logarithmic Functions Section 5.4 Properties of Logarithms Section 5.5 Exponential and Logarithmic Equations Section 5.6 Applications of Exponential and Logarithmic Functions Answers to End-of-Section Self-Assessments Page 2

3 Syllabus Highlights Welcome to Math 112! The following highlights some of the most important parts of the full syllabus. Students are still expected to know the contents of the full syllabus, which is posted in D2L. Required Materials MyMathLab access Math 112 Guided Workbook Graphing Calculator In-Person Class Meetings An important and mandatory part of the course, the in-person class meetings allow students time to interact with their instructor and classmates. Written assignments will be collected at class and constitute a significant portion of the course grade. Online Work The book, homework, and online quizzes are all hosted on (MML). Enrollment in the mymathlab.com course must be completed by the end of the first day of classes. Failure to enroll by the third day of classes will result in administrative drop. Exams There will be two midterm exams and a cumulative final exam. Course Grade Break Down Homework: 100 points MML Tests: 100 points (25 points each) Midterms: 400 points (200 points each) Final Exam 200 points Getting Help Office hours and appointments by Tutoring at ThinkTank Actions That May Result in an Administrative Drop Failing to sign up for MML Failing to come to class the first day Missing more than 3 classes Missing more than 5 assignments Page 3

4 Quick Reference Guide Math Department Information Math Dept Home Math Dept Tutoring Math 112 Homepage Math Common Final Exam Schedule University Information U of A Home Final Exam schedule Important Dates and Deadlines U of A Computing Homepage 24/7 Computing Support UAccess D2L Important University Policies Code of Academic Integrity Student Code of Conduct Manual/5-308-Student Code of Conduct.pdf Services for Students University Tutoring Services Disability Resource Center Campus Health Page 4

5 Strategies for Checking Answers One of the components of the written work in the course involves checking your answers. There are many ways to check your answer to a problem. These are some strategies you can try: 1. Use the answer you found and substitute it back into the original equation. When you are asked to solve an equation, this is the simplest and most straight-forward way to check your results. 2. When you are solving a word problem, check to see whether your solution yields the desired outcome. For example, if you are solving for the dimensions of a rectangle that give a certain area, use the length and width you found in your solution to calculate the area, and see if you get what you expect. 3. Solve the problem using a different technique or algorithm. For example, if you solved a quadratic equation by factoring, you could check it by using the quadratic formula. 4. Use a different approach to solve the problem. For example, if you solved a problem strictly algebraically, you can try graphing on your calculator to check your solution. (This can work the other way around as well!) 5. Check to see whether your answer makes sense. For example, if you are solving a problem to find the speed of a car driving on the highway, 350 mph is not a reasonable solution. 6. To take the previous strategy one step farther, you can refine what kind of answer is reasonable. For example, if the problem states that a person is given one 100 mg dosage of a drug, and you need to calculate the amount of the drug left in the person s system after a certain amount of time, then your answer must be greater than or equal to 0 mg, and less than or equal to 100 mg. So if you get an answer of 120 mg or -5 mg, you know you ve done something incorrectly. 7. Build a concrete example of the more abstract question. For example, if you are asked how the graph of y = 2f(x) is transformed from the graph of y = f(x), you can pick a specific function, say y = x, and take a look at the graph of y = x compared to the graph of y = 2 x. Note: Sometimes students try to check by re-doing the problem in the same way they approached it the first time. If you made a mistake the first time, it is very likely to make the same mistake the second time. This is not recommended as a way to check your work (though it may help in a pinch on an exam). Page 5

6 Quadratic Formula Program for Graphing Calculators Quadratic Formula - TI 82 Introduction This program solves equations of the form Ax 2 + Bx + C = 0 by using the quadratic formula. The Program :Prompt A,B,C {Prompt is in PRGM under I/O} :(B 2-4*A*C) D {The arrow is STO} :If D<0 {If is in PRGM under CTL} {< is in TEST } :Then {Then is in PRGM under CTL} :Disp "NO REAL SOLUTIONS" {Disp is in PRGM under I/O} {Words within "" are :Goto 1 {Goto is in PRGM under CTL} :Else {Else is in PRGM under CTL} :((-B+ (D))/(2A)) E {The is square root} {The - is the negative sign} :((-B- (D))/(2A)) F {The second - is the subtraction sign} :Disp "SOLUTIONS",E,F {Disp is in PRGM under I/O} {Words within "" are :Lbl 1 {Lbl is in PRGM under CTL} Running the program You will be asked to enter values for A, B, and C according to the quadratic formula. To test your program, try the following: A=2, B=3, C=4. Your answer should be NO REAL SOLUTIONS. A=5, B=4, C=-2. Your answer should be , Page 6

7 Quadratic Formula - TI 83, TI 83 Plus, and TI 84 Plus Introduction This program solves equations of the form Ax 2 + Bx + C = 0 by using the quadratic formula. The Program :Prompt A,B,C {Prompt is in PRGM under I/O} :(B 2-4*A*C) D {The arrow is STO} :If D<0 {If is in PRGM under CTL} {< is in TEST } :Then {Then is in PRGM under CTL} :Disp "NO REAL SOLUTIONS" {Disp is in PRGM under I/O} {Words within "" are :Goto 1 {Goto is in PRGM under CTL} :Else {Else is in PRGM under CTL} :((-B+ (D))/(2A)) E {The is square root} {The - is the negative sign} :((-B- (D))/(2A)) F {The second - is the subtraction sign} :Disp "SOLUTIONS",E,F {Disp is in PRGM under I/O} {Words within "" are :Lbl 1 {Lbl is in PRGM under CTL} Running the program You will be asked to enter values for A, B, and C according to the quadratic formula. To test your program, try the following: A=2, B=3, C=4. Your answer should be NO REAL SOLUTIONS. A=5, B=4, C=-2. Your answer should be , Page 7

8 Quadratic Formula - TI 85, TI 86 Introduction This program solves equations of the form Ax 2 + Bx + C = 0 by using the quadratic formula. The Program :Prompt A,B,C {Prompt is in PRGM under I/O} :(B 2-4*A*C) D {The arrow is STO} :If D<0 {If is in PRGM under CTL} {< is in TEST} :Then {Then is in PRGM under CTL} :Disp "NO REAL SOLUTIONS" {Disp is in PRGM under I/O} {Words within "" are :Goto P {Goto is in PRGM under CTL} :Else {Else is in PRGM under CTL} :((-B+ (D))/(2A)) E {The is square root} {The - is the negative sign} :((-B- (D))/(2A)) F {The second - is the subtraction sign} :Disp "SOLUTIONS",E,F {Disp is in PRGM under I/O} {Words within "" are :Lbl P {Lbl is in PRGM under CTL} Running the program You will be asked to enter values for A, B, and C according to the quadratic formula. To test your program, try the following: A=2, B=3, C=4. Your answer should be NO REAL SOLUTIONS. A=5, B=4, C=-2. Your answer should be , Page 8

9 Quadratic Formula Casio models Introduction This program solves equations of the form Ax 2 + Bx + C = 0 by using the quadratic formula. The Program 'QUADRATIC' {This will be the name of the program} "A"? A {" is in ALPHA} {? is in PRGM} { is on the, button} "B"? B "C"? C (B^2-4 A C) D { is the times sign} D<0 Goto 1 {, Goto are in PRGM under JMP} {< is in PRGM under REL} {0 is a zero} ((-B+ D) (2A)) E {The is the square root symbol} {The - is the negative sign} ((-B- D) (2A)) F {The second - is a subtraction sign} "SOLUTIONS" E { is in PRGM, do not hit EXE} F Goto 2 Lbl 1 {Lbl is in PRGM under JMP} "NO REAL SOLUTIONS" Lbl 2 Running the program You will be asked to enter values for A, B, and C according to the quadratic formula. To test your program, try the following: A=2, B=3, C=4. Your answer should be NO REAL SOLUTIONS. A=5, B=4, C=-2. Your answer should be , Page 9

10 Page 10

Math 098 Intermediate Algebra Spring 2018

Math 098 Intermediate Algebra Spring 2018 Math 098 Intermediate Algebra Spring 2018 Dept. of Mathematics Instructor's Name: Office Location: Office Hours: Office Phone: E-mail: MyMathLab Course ID: Course Description This course expands on the

More information

Syllabus ENGR 190 Introductory Calculus (QR)

Syllabus ENGR 190 Introductory Calculus (QR) Syllabus ENGR 190 Introductory Calculus (QR) Catalog Data: ENGR 190 Introductory Calculus (4 credit hours). Note: This course may not be used for credit toward the J.B. Speed School of Engineering B. S.

More information

SOUTHERN MAINE COMMUNITY COLLEGE South Portland, Maine 04106

SOUTHERN MAINE COMMUNITY COLLEGE South Portland, Maine 04106 SOUTHERN MAINE COMMUNITY COLLEGE South Portland, Maine 04106 Title: Precalculus Catalog Number: MATH 190 Credit Hours: 3 Total Contact Hours: 45 Instructor: Gwendolyn Blake Email: gblake@smccme.edu Website:

More information

Instructor: Matthew Wickes Kilgore Office: ES 310

Instructor: Matthew Wickes Kilgore Office: ES 310 MATH 1314 College Algebra Syllabus Instructor: Matthew Wickes Kilgore Office: ES 310 Longview Office: LN 205C Email: mwickes@kilgore.edu Phone: 903 988-7455 Prerequistes: Placement test score on TSI or

More information

Math 150 Syllabus Course title and number MATH 150 Term Fall 2017 Class time and location INSTRUCTOR INFORMATION Name Erin K. Fry Phone number Department of Mathematics: 845-3261 e-mail address erinfry@tamu.edu

More information

Foothill College Summer 2016

Foothill College Summer 2016 Foothill College Summer 2016 Intermediate Algebra Math 105.04W CRN# 10135 5.0 units Instructor: Yvette Butterworth Text: None; Beoga.net material used Hours: Online Except Final Thurs, 8/4 3:30pm Phone:

More information

Page 1 of 8 REQUIRED MATERIALS:

Page 1 of 8 REQUIRED MATERIALS: INSTRUCTOR: OFFICE: PHONE / EMAIL: CONSULTATION: INSTRUCTOR WEB SITE: MATH DEPARTMENT WEB SITES: http:/ Online MATH 1010 INTERMEDIATE ALGEBRA Spring Semester 2013 Zeph Smith SCC N326 - G 957-3229 / zeph.smith@slcc.edu

More information

Mathematics. Mathematics

Mathematics. Mathematics Mathematics Program Description Successful completion of this major will assure competence in mathematics through differential and integral calculus, providing an adequate background for employment in

More information

Beginning and Intermediate Algebra, by Elayn Martin-Gay, Second Custom Edition for Los Angeles Mission College. ISBN 13:

Beginning and Intermediate Algebra, by Elayn Martin-Gay, Second Custom Edition for Los Angeles Mission College. ISBN 13: Course: Math 125,, Section: 25065 Time: T Th: 7:00 pm - 9:30 pm Room: CMS 022 Textbook: Beginning and, by Elayn Martin-Gay, Second Custom Edition for Los Angeles Mission College. ISBN 13: 978-1-323-45049-9

More information

Mathematics Assessment Plan

Mathematics Assessment Plan Mathematics Assessment Plan Mission Statement for Academic Unit: Georgia Perimeter College transforms the lives of our students to thrive in a global society. As a diverse, multi campus two year college,

More information

Statewide Framework Document for:

Statewide Framework Document for: Statewide Framework Document for: 270301 Standards may be added to this document prior to submission, but may not be removed from the framework to meet state credit equivalency requirements. Performance

More information

MAT 122 Intermediate Algebra Syllabus Summer 2016

MAT 122 Intermediate Algebra Syllabus Summer 2016 Instructor: Gary Adams Office: None (I am adjunct faculty) Phone: None Email: gary.adams@scottsdalecc.edu Office Hours: None CLASS TIME and LOCATION: Title Section Days Time Location Campus MAT122 12562

More information

Honors Mathematics. Introduction and Definition of Honors Mathematics

Honors Mathematics. Introduction and Definition of Honors Mathematics Honors Mathematics Introduction and Definition of Honors Mathematics Honors Mathematics courses are intended to be more challenging than standard courses and provide multiple opportunities for students

More information

AGS THE GREAT REVIEW GAME FOR PRE-ALGEBRA (CD) CORRELATED TO CALIFORNIA CONTENT STANDARDS

AGS THE GREAT REVIEW GAME FOR PRE-ALGEBRA (CD) CORRELATED TO CALIFORNIA CONTENT STANDARDS AGS THE GREAT REVIEW GAME FOR PRE-ALGEBRA (CD) CORRELATED TO CALIFORNIA CONTENT STANDARDS 1 CALIFORNIA CONTENT STANDARDS: Chapter 1 ALGEBRA AND WHOLE NUMBERS Algebra and Functions 1.4 Students use algebraic

More information

GUIDE TO THE CUNY ASSESSMENT TESTS

GUIDE TO THE CUNY ASSESSMENT TESTS GUIDE TO THE CUNY ASSESSMENT TESTS IN MATHEMATICS Rev. 117.016110 Contents Welcome... 1 Contact Information...1 Programs Administered by the Office of Testing and Evaluation... 1 CUNY Skills Assessment:...1

More information

Course Syllabus for Math

Course Syllabus for Math Course Syllabus for Math 1090-003 Instructor: Stefano Filipazzi Class Time: Mondays, Wednesdays and Fridays, 9.40 a.m. - 10.30 a.m. Class Place: LCB 225 Office hours: Wednesdays, 2.00 p.m. - 3.00 p.m.,

More information

SAT MATH PREP:

SAT MATH PREP: SAT MATH PREP: 2015-2016 NOTE: The College Board has redesigned the SAT Test. This new test will start in March of 2016. Also, the PSAT test given in October of 2015 will have the new format. Therefore

More information

Algebra 1, Quarter 3, Unit 3.1. Line of Best Fit. Overview

Algebra 1, Quarter 3, Unit 3.1. Line of Best Fit. Overview Algebra 1, Quarter 3, Unit 3.1 Line of Best Fit Overview Number of instructional days 6 (1 day assessment) (1 day = 45 minutes) Content to be learned Analyze scatter plots and construct the line of best

More information

Mathematics subject curriculum

Mathematics subject curriculum Mathematics subject curriculum Dette er ei omsetjing av den fastsette læreplanteksten. Læreplanen er fastsett på Nynorsk Established as a Regulation by the Ministry of Education and Research on 24 June

More information

INTERMEDIATE ALGEBRA PRODUCT GUIDE

INTERMEDIATE ALGEBRA PRODUCT GUIDE Welcome Thank you for choosing Intermediate Algebra. This adaptive digital curriculum provides students with instruction and practice in advanced algebraic concepts, including rational, radical, and logarithmic

More information

Learning Disability Functional Capacity Evaluation. Dear Doctor,

Learning Disability Functional Capacity Evaluation. Dear Doctor, Dear Doctor, I have been asked to formulate a vocational opinion regarding NAME s employability in light of his/her learning disability. To assist me with this evaluation I would appreciate if you can

More information

Technical Manual Supplement

Technical Manual Supplement VERSION 1.0 Technical Manual Supplement The ACT Contents Preface....................................................................... iii Introduction....................................................................

More information

AP Calculus AB. Nevada Academic Standards that are assessable at the local level only.

AP Calculus AB. Nevada Academic Standards that are assessable at the local level only. Calculus AB Priority Keys Aligned with Nevada Standards MA I MI L S MA represents a Major content area. Any concept labeled MA is something of central importance to the entire class/curriculum; it is a

More information

Bittinger, M. L., Ellenbogen, D. J., & Johnson, B. L. (2012). Prealgebra (6th ed.). Boston, MA: Addison-Wesley.

Bittinger, M. L., Ellenbogen, D. J., & Johnson, B. L. (2012). Prealgebra (6th ed.). Boston, MA: Addison-Wesley. Course Syllabus Course Description Explores the basic fundamentals of college-level mathematics. (Note: This course is for institutional credit only and will not be used in meeting degree requirements.

More information

MATH 108 Intermediate Algebra (online) 4 Credits Fall 2008

MATH 108 Intermediate Algebra (online) 4 Credits Fall 2008 MATH 108 Intermediate Algebra (online) 4 Credits Fall 2008 Instructor: Nolan Rice Math Lab: T 2:00 2:50 Office: SHL 206-F Office Hours: M/F 2:00 2:50 Phone/Voice Mail: 732.6819 W 4:30 5:20 E-mail: nrice@csi.edu

More information

Characteristics of Functions

Characteristics of Functions Characteristics of Functions Unit: 01 Lesson: 01 Suggested Duration: 10 days Lesson Synopsis Students will collect and organize data using various representations. They will identify the characteristics

More information

Math 96: Intermediate Algebra in Context

Math 96: Intermediate Algebra in Context : Intermediate Algebra in Context Syllabus Spring Quarter 2016 Daily, 9:20 10:30am Instructor: Lauri Lindberg Office Hours@ tutoring: Tutoring Center (CAS-504) 8 9am & 1 2pm daily STEM (Math) Center (RAI-338)

More information

Grading Policy/Evaluation: The grades will be counted in the following way: Quizzes 30% Tests 40% Final Exam: 30%

Grading Policy/Evaluation: The grades will be counted in the following way: Quizzes 30% Tests 40% Final Exam: 30% COURSE SYLLABUS FALL 2010 MATH 0408 INTERMEDIATE ALGEBRA Course # 0408.06 Course Schedule/Location: TT 09:35 11:40, A-228 Instructor: Dr. Calin Agut, Office: J-202, Department of Mathematics, Brazosport

More information

Class Meeting Time and Place: Section 3: MTWF10:00-10:50 TILT 221

Class Meeting Time and Place: Section 3: MTWF10:00-10:50 TILT 221 Math 155. Calculus for Biological Scientists Fall 2017 Website https://csumath155.wordpress.com Please review the course website for details on the schedule, extra resources, alternate exam request forms,

More information

Answers To Hawkes Learning Systems Intermediate Algebra

Answers To Hawkes Learning Systems Intermediate Algebra Answers To Hawkes Learning Free PDF ebook Download: Answers To Download or Read Online ebook answers to hawkes learning systems intermediate algebra in PDF Format From The Best User Guide Database Double

More information

Grade 6: Correlated to AGS Basic Math Skills

Grade 6: Correlated to AGS Basic Math Skills Grade 6: Correlated to AGS Basic Math Skills Grade 6: Standard 1 Number Sense Students compare and order positive and negative integers, decimals, fractions, and mixed numbers. They find multiples and

More information

Please read this entire syllabus, keep it as reference and is subject to change by the instructor.

Please read this entire syllabus, keep it as reference and is subject to change by the instructor. Math 125: Intermediate Algebra Syllabus Section # 3288 Fall 2013 TTh 4:10-6:40 PM MATH 1412 INSTRUCTOR: Nisakorn Srichoom (Prefer to be call Ms. Nisa or Prof. Nisa) OFFICE HOURS: Tuesday at 6:40-7:40 PM

More information

Math-U-See Correlation with the Common Core State Standards for Mathematical Content for Third Grade

Math-U-See Correlation with the Common Core State Standards for Mathematical Content for Third Grade Math-U-See Correlation with the Common Core State Standards for Mathematical Content for Third Grade The third grade standards primarily address multiplication and division, which are covered in Math-U-See

More information

Course Name: Elementary Calculus Course Number: Math 2103 Semester: Fall Phone:

Course Name: Elementary Calculus Course Number: Math 2103 Semester: Fall Phone: Course Name: Elementary Calculus Course Number: Math 2103 Semester: Fall 2011 Instructor s Name: Ricky Streight Hours Credit: 3 Phone: 405-945-6794 email: ricky.streight@okstate.edu 1. COURSE: Math 2103

More information

TOPICS LEARNING OUTCOMES ACTIVITES ASSESSMENT Numbers and the number system

TOPICS LEARNING OUTCOMES ACTIVITES ASSESSMENT Numbers and the number system Curriculum Overview Mathematics 1 st term 5º grade - 2010 TOPICS LEARNING OUTCOMES ACTIVITES ASSESSMENT Numbers and the number system Multiplies and divides decimals by 10 or 100. Multiplies and divide

More information

Cal s Dinner Card Deals

Cal s Dinner Card Deals Cal s Dinner Card Deals Overview: In this lesson students compare three linear functions in the context of Dinner Card Deals. Students are required to interpret a graph for each Dinner Card Deal to help

More information

MTH 141 Calculus 1 Syllabus Spring 2017

MTH 141 Calculus 1 Syllabus Spring 2017 Instructor: Section/Meets Office Hrs: Textbook: Calculus: Single Variable, by Hughes-Hallet et al, 6th ed., Wiley. Also needed: access code to WileyPlus (included in new books) Calculator: Not required,

More information

Math Techniques of Calculus I Penn State University Summer Session 2017

Math Techniques of Calculus I Penn State University Summer Session 2017 Math 110 - Techniques of Calculus I Penn State University Summer Session 2017 Instructor: Sergio Zamora Barrera Office: 018 McAllister Bldg E-mail: sxz38@psu.edu Office phone: 814-865-4291 Office Hours:

More information

Extending Place Value with Whole Numbers to 1,000,000

Extending Place Value with Whole Numbers to 1,000,000 Grade 4 Mathematics, Quarter 1, Unit 1.1 Extending Place Value with Whole Numbers to 1,000,000 Overview Number of Instructional Days: 10 (1 day = 45 minutes) Content to Be Learned Recognize that a digit

More information

Math 22. Fall 2016 TROUT

Math 22. Fall 2016 TROUT Math 22 Fall 2016 TROUT Instructor: Kip Trout, B.S., M.S. Office Hours: Mon; Wed: 11:00 AM -12:00 PM in Room 13 RAB Tue; Thur: 3:15 PM -4:15 PM in Room 13 RAB Phone/Text: (717) 676 1274 (Between 10 AM

More information

Course Goal This is the final course in the developmental mathematics sequence and its purpose is to prepare students for College Algebra.

Course Goal This is the final course in the developmental mathematics sequence and its purpose is to prepare students for College Algebra. Mathematics ONLINE Math 0312: Intermediate Algebra CRN 86448 Spring 2 nd Eight Weeks/2016 3 hour lecture course +1hour lab / 64 hours per semester/ 8 weeks Textbook: Introductory and Intermediate Algebra.

More information

Mathematics process categories

Mathematics process categories Mathematics process categories All of the UK curricula define multiple categories of mathematical proficiency that require students to be able to use and apply mathematics, beyond simple recall of facts

More information

Alignment of Australian Curriculum Year Levels to the Scope and Sequence of Math-U-See Program

Alignment of Australian Curriculum Year Levels to the Scope and Sequence of Math-U-See Program Alignment of s to the Scope and Sequence of Math-U-See Program This table provides guidance to educators when aligning levels/resources to the Australian Curriculum (AC). The Math-U-See levels do not address

More information

Page 1 of 11. Curriculum Map: Grade 4 Math Course: Math 4 Sub-topic: General. Grade(s): None specified

Page 1 of 11. Curriculum Map: Grade 4 Math Course: Math 4 Sub-topic: General. Grade(s): None specified Curriculum Map: Grade 4 Math Course: Math 4 Sub-topic: General Grade(s): None specified Unit: Creating a Community of Mathematical Thinkers Timeline: Week 1 The purpose of the Establishing a Community

More information

This scope and sequence assumes 160 days for instruction, divided among 15 units.

This scope and sequence assumes 160 days for instruction, divided among 15 units. In previous grades, students learned strategies for multiplication and division, developed understanding of structure of the place value system, and applied understanding of fractions to addition and subtraction

More information

Penn State University - University Park MATH 140 Instructor Syllabus, Calculus with Analytic Geometry I Fall 2010

Penn State University - University Park MATH 140 Instructor Syllabus, Calculus with Analytic Geometry I Fall 2010 Penn State University - University Park MATH 140 Instructor Syllabus, Calculus with Analytic Geometry I Fall 2010 There are two ways to live: you can live as if nothing is a miracle; you can live as if

More information

LLD MATH. Student Eligibility: Grades 6-8. Credit Value: Date Approved: 8/24/15

LLD MATH. Student Eligibility: Grades 6-8. Credit Value: Date Approved: 8/24/15 PUBLIC SCHOOLS OF EDISON TOWNSHIP DIVISION OF CURRICULUM AND INSTRUCTION LLD MATH Length of Course: Elective/Required: School: Full Year Required Middle Schools Student Eligibility: Grades 6-8 Credit Value:

More information

Montana Content Standards for Mathematics Grade 3. Montana Content Standards for Mathematical Practices and Mathematics Content Adopted November 2011

Montana Content Standards for Mathematics Grade 3. Montana Content Standards for Mathematical Practices and Mathematics Content Adopted November 2011 Montana Content Standards for Mathematics Grade 3 Montana Content Standards for Mathematical Practices and Mathematics Content Adopted November 2011 Contents Standards for Mathematical Practice: Grade

More information

TabletClass Math Geometry Course Guidebook

TabletClass Math Geometry Course Guidebook TabletClass Math Geometry Course Guidebook Includes Final Exam/Key, Course Grade Calculation Worksheet and Course Certificate Student Name Parent Name School Name Date Started Course Date Completed Course

More information

Math 121 Fundamentals of Mathematics I

Math 121 Fundamentals of Mathematics I I. Course Description: Math 121 Fundamentals of Mathematics I Math 121 is a general course in the fundamentals of mathematics. It includes a study of concepts of numbers and fundamental operations with

More information

First Grade Standards

First Grade Standards These are the standards for what is taught throughout the year in First Grade. It is the expectation that these skills will be reinforced after they have been taught. Mathematical Practice Standards Taught

More information

SANTIAGO CANYON COLLEGE Reading & English Placement Testing Information

SANTIAGO CANYON COLLEGE Reading & English Placement Testing Information SANTIAGO CANYON COLLEGE Reaing & English Placement Testing Information DO YOUR BEST on the Reaing & English Placement Test The Reaing & English placement test is esigne to assess stuents skills in reaing

More information

Dublin City Schools Mathematics Graded Course of Study GRADE 4

Dublin City Schools Mathematics Graded Course of Study GRADE 4 I. Content Standard: Number, Number Sense and Operations Standard Students demonstrate number sense, including an understanding of number systems and reasonable estimates using paper and pencil, technology-supported

More information

BENCHMARK MA.8.A.6.1. Reporting Category

BENCHMARK MA.8.A.6.1. Reporting Category Grade MA..A.. Reporting Category BENCHMARK MA..A.. Number and Operations Standard Supporting Idea Number and Operations Benchmark MA..A.. Use exponents and scientific notation to write large and small

More information

Arizona s College and Career Ready Standards Mathematics

Arizona s College and Career Ready Standards Mathematics Arizona s College and Career Ready Mathematics Mathematical Practices Explanations and Examples First Grade ARIZONA DEPARTMENT OF EDUCATION HIGH ACADEMIC STANDARDS FOR STUDENTS State Board Approved June

More information

Fourth Grade. Reporting Student Progress. Libertyville School District 70. Fourth Grade

Fourth Grade. Reporting Student Progress. Libertyville School District 70. Fourth Grade Fourth Grade Libertyville School District 70 Reporting Student Progress Fourth Grade A Message to Parents/Guardians: Libertyville Elementary District 70 teachers of students in kindergarten-5 utilize a

More information

Written by Wendy Osterman

Written by Wendy Osterman Pre-Algebra Written by Wendy Osterman Editor: Alaska Hults Illustrator: Corbin Hillam Designer/Production: Moonhee Pak/Cari Helstrom Cover Designer: Barbara Peterson Art Director: Tom Cochrane Project

More information

OFFICE SUPPORT SPECIALIST Technical Diploma

OFFICE SUPPORT SPECIALIST Technical Diploma OFFICE SUPPORT SPECIALIST Technical Diploma Program Code: 31-106-8 our graduates INDEMAND 2017/2018 mstc.edu administrative professional career pathway OFFICE SUPPORT SPECIALIST CUSTOMER RELATIONSHIP PROFESSIONAL

More information

Pre-AP Geometry Course Syllabus Page 1

Pre-AP Geometry Course Syllabus Page 1 Pre-AP Geometry Course Syllabus 2015-2016 Welcome to my Pre-AP Geometry class. I hope you find this course to be a positive experience and I am certain that you will learn a great deal during the next

More information

INTERMEDIATE ALGEBRA Course Syllabus

INTERMEDIATE ALGEBRA Course Syllabus INTERMEDIATE ALGEBRA Course Syllabus This syllabus gives a detailed explanation of the course procedures and policies. You are responsible for this information - ask your instructor if anything is unclear.

More information

THE UNIVERSITY OF SYDNEY Semester 2, Information Sheet for MATH2068/2988 Number Theory and Cryptography

THE UNIVERSITY OF SYDNEY Semester 2, Information Sheet for MATH2068/2988 Number Theory and Cryptography THE UNIVERSITY OF SYDNEY Semester 2, 2017 Information Sheet for MATH2068/2988 Number Theory and Cryptography Websites: It is important that you check the following webpages regularly. Intermediate Mathematics

More information

Are You Ready? Simplify Fractions

Are You Ready? Simplify Fractions SKILL 10 Simplify Fractions Teaching Skill 10 Objective Write a fraction in simplest form. Review the definition of simplest form with students. Ask: Is 3 written in simplest form? Why 7 or why not? (Yes,

More information

Classroom Connections Examining the Intersection of the Standards for Mathematical Content and the Standards for Mathematical Practice

Classroom Connections Examining the Intersection of the Standards for Mathematical Content and the Standards for Mathematical Practice Classroom Connections Examining the Intersection of the Standards for Mathematical Content and the Standards for Mathematical Practice Title: Considering Coordinate Geometry Common Core State Standards

More information

CAAP. Content Analysis Report. Sample College. Institution Code: 9011 Institution Type: 4-Year Subgroup: none Test Date: Spring 2011

CAAP. Content Analysis Report. Sample College. Institution Code: 9011 Institution Type: 4-Year Subgroup: none Test Date: Spring 2011 CAAP Content Analysis Report Institution Code: 911 Institution Type: 4-Year Normative Group: 4-year Colleges Introduction This report provides information intended to help postsecondary institutions better

More information

Math Grade 3 Assessment Anchors and Eligible Content

Math Grade 3 Assessment Anchors and Eligible Content Math Grade 3 Assessment Anchors and Eligible Content www.pde.state.pa.us 2007 M3.A Numbers and Operations M3.A.1 Demonstrate an understanding of numbers, ways of representing numbers, relationships among

More information

Grade 5 + DIGITAL. EL Strategies. DOK 1-4 RTI Tiers 1-3. Flexible Supplemental K-8 ELA & Math Online & Print

Grade 5 + DIGITAL. EL Strategies. DOK 1-4 RTI Tiers 1-3. Flexible Supplemental K-8 ELA & Math Online & Print Standards PLUS Flexible Supplemental K-8 ELA & Math Online & Print Grade 5 SAMPLER Mathematics EL Strategies DOK 1-4 RTI Tiers 1-3 15-20 Minute Lessons Assessments Consistent with CA Testing Technology

More information

AP Chemistry

AP Chemistry AP Chemistry 2016-2017 Welcome to AP Chemistry! I am so excited to have you in this course next year! To get geared up for the class, there are some things that you need to do this summer. None of it is

More information

CUNY ASSESSMENT TESTS Webinar for International Students

CUNY ASSESSMENT TESTS Webinar for International Students CUNY ASSESSMENT TESTS Webinar for International Students 1 Today s Agenda ITEM 1 Description Overview of the CUNY ASSESSMENT TEST (CAT) What is the CUNY Assessment Test Why students need to take the CAT

More information

Afm Math Review Download or Read Online ebook afm math review in PDF Format From The Best User Guide Database

Afm Math Review Download or Read Online ebook afm math review in PDF Format From The Best User Guide Database Afm Math Free PDF ebook Download: Afm Math Download or Read Online ebook afm math review in PDF Format From The Best User Guide Database C++ for Game Programming with DirectX9.0c and Raknet. Lesson 1.

More information

Office Hours: Mon & Fri 10:00-12:00. Course Description

Office Hours: Mon & Fri 10:00-12:00. Course Description 1 State University of New York at Buffalo INTRODUCTION TO STATISTICS PSC 408 4 credits (3 credits lecture, 1 credit lab) Fall 2016 M/W/F 1:00-1:50 O Brian 112 Lecture Dr. Michelle Benson mbenson2@buffalo.edu

More information

Introduction. Chem 110: Chemical Principles 1 Sections 40-52

Introduction. Chem 110: Chemical Principles 1 Sections 40-52 Introduction Chem 110: Chemical Principles 1 Sections 40-52 Instructor: Dr. Squire J. Booker 302 Chemistry Building 814-865-8793 squire@psu.edu (sjb14@psu.edu) Lectures: Monday (M), Wednesday (W), Friday

More information

TCC Jim Bolen Math Competition Rules and Facts. Rules:

TCC Jim Bolen Math Competition Rules and Facts. Rules: TCC Jim Bolen Math Competition Rules and Facts Rules: The Jim Bolen Math Competition is composed of two one hour multiple choice pre-calculus tests. The first test is scheduled on Friday, November 8, 2013

More information

Julia Smith. Effective Classroom Approaches to.

Julia Smith. Effective Classroom Approaches to. Julia Smith @tessmaths Effective Classroom Approaches to GCSE Maths resits julia.smith@writtle.ac.uk Agenda The context of GCSE resit in a post-16 setting An overview of the new GCSE Key features of a

More information

1.11 I Know What Do You Know?

1.11 I Know What Do You Know? 50 SECONDARY MATH 1 // MODULE 1 1.11 I Know What Do You Know? A Practice Understanding Task CC BY Jim Larrison https://flic.kr/p/9mp2c9 In each of the problems below I share some of the information that

More information

HOLMER GREEN SENIOR SCHOOL CURRICULUM INFORMATION

HOLMER GREEN SENIOR SCHOOL CURRICULUM INFORMATION HOLMER GREEN SENIOR SCHOOL CURRICULUM INFORMATION Subject: Mathematics Year Group: 7 Exam Board: (For years 10, 11, 12 and 13 only) Assessment requirements: Students will take 3 large assessments during

More information

State University of New York at Buffalo INTRODUCTION TO STATISTICS PSC 408 Fall 2015 M,W,F 1-1:50 NSC 210

State University of New York at Buffalo INTRODUCTION TO STATISTICS PSC 408 Fall 2015 M,W,F 1-1:50 NSC 210 1 State University of New York at Buffalo INTRODUCTION TO STATISTICS PSC 408 Fall 2015 M,W,F 1-1:50 NSC 210 Dr. Michelle Benson mbenson2@buffalo.edu Office: 513 Park Hall Office Hours: Mon & Fri 10:30-12:30

More information

Physics 270: Experimental Physics

Physics 270: Experimental Physics 2017 edition Lab Manual Physics 270 3 Physics 270: Experimental Physics Lecture: Lab: Instructor: Office: Email: Tuesdays, 2 3:50 PM Thursdays, 2 4:50 PM Dr. Uttam Manna 313C Moulton Hall umanna@ilstu.edu

More information

Functional Skills Mathematics Level 2 assessment

Functional Skills Mathematics Level 2 assessment Functional Skills Mathematics Level 2 assessment www.cityandguilds.com September 2015 Version 1.0 Marking scheme ONLINE V2 Level 2 Sample Paper 4 Mark Represent Analyse Interpret Open Fixed S1Q1 3 3 0

More information

Digital Fabrication and Aunt Sarah: Enabling Quadratic Explorations via Technology. Michael L. Connell University of Houston - Downtown

Digital Fabrication and Aunt Sarah: Enabling Quadratic Explorations via Technology. Michael L. Connell University of Houston - Downtown Digital Fabrication and Aunt Sarah: Enabling Quadratic Explorations via Technology Michael L. Connell University of Houston - Downtown Sergei Abramovich State University of New York at Potsdam Introduction

More information

AU MATH Calculus I 2017 Spring SYLLABUS

AU MATH Calculus I 2017 Spring SYLLABUS AU MATH 191 950 Calculus I 2017 Spring SYLLABUS AU Math 191 950 Calculus I Consortium of Adventist Colleges and Universities Interactive Online Format This course follows an interactive online format with

More information

STUDENT MOODLE ORIENTATION

STUDENT MOODLE ORIENTATION BAKER UNIVERSITY SCHOOL OF PROFESSIONAL AND GRADUATE STUDIES STUDENT MOODLE ORIENTATION TABLE OF CONTENTS Introduction to Moodle... 2 Online Aptitude Assessment... 2 Moodle Icons... 6 Logging In... 8 Page

More information

Multiplication of 2 and 3 digit numbers Multiply and SHOW WORK. EXAMPLE. Now try these on your own! Remember to show all work neatly!

Multiplication of 2 and 3 digit numbers Multiply and SHOW WORK. EXAMPLE. Now try these on your own! Remember to show all work neatly! Multiplication of 2 and digit numbers Multiply and SHOW WORK. EXAMPLE 205 12 10 2050 2,60 Now try these on your own! Remember to show all work neatly! 1. 6 2 2. 28 8. 95 7. 82 26 5. 905 15 6. 260 59 7.

More information

Mathematics Success Level E

Mathematics Success Level E T403 [OBJECTIVE] The student will generate two patterns given two rules and identify the relationship between corresponding terms, generate ordered pairs, and graph the ordered pairs on a coordinate plane.

More information

STA2023 Introduction to Statistics (Hybrid) Spring 2013

STA2023 Introduction to Statistics (Hybrid) Spring 2013 STA2023 Introduction to Statistics (Hybrid) Spring 2013 Course Description This course introduces the student to the concepts of a statistical design and data analysis with emphasis on introductory descriptive

More information

CALCULUS III MATH

CALCULUS III MATH CALCULUS III MATH 01230-1 1. Instructor: Dr. Evelyn Weinstock Mathematics Department, Robinson, Second Floor, 228E 856-256-4500, ext. 3862, email: weinstock@rowan.edu Days/Times: Monday & Thursday 2:00-3:15,

More information

Math 181, Calculus I

Math 181, Calculus I Math 181, Calculus I [Semester] [Class meeting days/times] [Location] INSTRUCTOR INFORMATION: Name: Office location: Office hours: Mailbox: Phone: Email: Required Material and Access: Textbook: Stewart,

More information

Clackamas CC BI 231, 232, 233 BI 231,232, BI 234 BI 234 BI 234 BI 234 BI 234 BI 234 BIOL 234, 235, 323 or 244

Clackamas CC BI 231, 232, 233 BI 231,232, BI 234 BI 234 BI 234 BI 234 BI 234 BI 234 BIOL 234, 235, 323 or 244 OHSU Requirements (All Programs) Number of Required Quarter Credits Blue Mountain Central Chemeketa Clackamas Clatsop Columbia Gorge Eastern Klamath Lane Linn- Benton Mt. Hood Anatomy & Physiology 1, 2,

More information

Answer Key For The California Mathematics Standards Grade 1

Answer Key For The California Mathematics Standards Grade 1 Introduction: Summary of Goals GRADE ONE By the end of grade one, students learn to understand and use the concept of ones and tens in the place value number system. Students add and subtract small numbers

More information

Welcome to ACT Brain Boot Camp

Welcome to ACT Brain Boot Camp Welcome to ACT Brain Boot Camp 9:30 am - 9:45 am Basics (in every room) 9:45 am - 10:15 am Breakout Session #1 ACT Math: Adame ACT Science: Moreno ACT Reading: Campbell ACT English: Lee 10:20 am - 10:50

More information

Many instructors use a weighted total to calculate their grades. This lesson explains how to set up a weighted total using categories.

Many instructors use a weighted total to calculate their grades. This lesson explains how to set up a weighted total using categories. Weighted Totals Many instructors use a weighted total to calculate their grades. This lesson explains how to set up a weighted total using categories. Set up your grading scheme in your syllabus Your syllabus

More information

Standard 1: Number and Computation

Standard 1: Number and Computation Standard 1: Number and Computation Standard 1: Number and Computation The student uses numerical and computational concepts and procedures in a variety of situations. Benchmark 1: Number Sense The student

More information

FOR TEACHERS ONLY. The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION PHYSICAL SETTING/PHYSICS

FOR TEACHERS ONLY. The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION PHYSICAL SETTING/PHYSICS PS P FOR TEACHERS ONLY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION PHYSICAL SETTING/PHYSICS Thursday, June 21, 2007 9:15 a.m. to 12:15 p.m., only SCORING KEY AND RATING GUIDE

More information

Focus of the Unit: Much of this unit focuses on extending previous skills of multiplication and division to multi-digit whole numbers.

Focus of the Unit: Much of this unit focuses on extending previous skills of multiplication and division to multi-digit whole numbers. Approximate Time Frame: 3-4 weeks Connections to Previous Learning: In fourth grade, students fluently multiply (4-digit by 1-digit, 2-digit by 2-digit) and divide (4-digit by 1-digit) using strategies

More information

Getting Started with TI-Nspire High School Science

Getting Started with TI-Nspire High School Science Getting Started with TI-Nspire High School Science 2012 Texas Instruments Incorporated Materials for Institute Participant * *This material is for the personal use of T3 instructors in delivering a T3

More information

AP Statistics Summer Assignment 17-18

AP Statistics Summer Assignment 17-18 AP Statistics Summer Assignment 17-18 Welcome to AP Statistics. This course will be unlike any other math class you have ever taken before! Before taking this course you will need to be competent in basic

More information

1 st Quarter (September, October, November) August/September Strand Topic Standard Notes Reading for Literature

1 st Quarter (September, October, November) August/September Strand Topic Standard Notes Reading for Literature 1 st Grade Curriculum Map Common Core Standards Language Arts 2013 2014 1 st Quarter (September, October, November) August/September Strand Topic Standard Notes Reading for Literature Key Ideas and Details

More information

KLI: Infer KCs from repeated assessment events. Do you know what you know? Ken Koedinger HCI & Psychology CMU Director of LearnLab

KLI: Infer KCs from repeated assessment events. Do you know what you know? Ken Koedinger HCI & Psychology CMU Director of LearnLab KLI: Infer KCs from repeated assessment events Ken Koedinger HCI & Psychology CMU Director of LearnLab Instructional events Explanation, practice, text, rule, example, teacher-student discussion Learning

More information

Helping Your Children Learn in the Middle School Years MATH

Helping Your Children Learn in the Middle School Years MATH Helping Your Children Learn in the Middle School Years MATH Grade 7 A GUIDE TO THE MATH COMMON CORE STATE STANDARDS FOR PARENTS AND STUDENTS This brochure is a product of the Tennessee State Personnel

More information

Syllabus Foundations of Finance Summer 2014 FINC-UB

Syllabus Foundations of Finance Summer 2014 FINC-UB Syllabus Foundations of Finance Summer 2014 FINC-UB.0002.01 Instructor Matteo Crosignani Office: KMEC 9-193F Phone: 212-998-0716 Email: mcrosign@stern.nyu.edu Office Hours: Thursdays 4-6pm in Altman Room

More information

Diagnostic Test. Middle School Mathematics

Diagnostic Test. Middle School Mathematics Diagnostic Test Middle School Mathematics Copyright 2010 XAMonline, Inc. All rights reserved. No part of the material protected by this copyright notice may be reproduced or utilized in any form or by

More information