Justine Lyka P. Chua Marie Antoinette T. Sy

Size: px
Start display at page:

Download "Justine Lyka P. Chua Marie Antoinette T. Sy"

Transcription

1 SOLVING TRIANGLES Objective and Significance of the Application Our main objective for our machine project is to create a C application that will compute for the missing side and angles of a triangle given the inputs ( two sides and one angle that is opposite to one of the sides) using the knowledge of triangles and the Law of Sine. Aside from solving the missing part of the triangle, it also identifies what type of a triangle it will be according to angles and the sides. It also gives the area and the perimeter. Convert the angles to radians or degrees. And checks how many triangles are there and more. The C application is especially designed or made to the Trigonometry students (like us) and the teachers too. It will help them in solving this kind of problems. Instead of memorizing the different formulas of sine and cosine just to get the missing side or angle, instead of plugging it in the calculator. An easier and an accurate way of solving these kinds of problem is our C application, just plug in the given input and the program gives the answer to the problem. Function Specifications: 1. A triangle has 3 sides and 3 angles. Let s name the sides a, b, c and the angles A, B, and C where A is the opposite of side a, B is the opposite of side B, and C is the opposite of side c. Write a program that prompts the user to input the side a, side b and angle A and tells the user to choose a function that he or she wishes to perform on that number. Below is a sample run: Input side a: Input side b: Input angle A (in degrees): Choose a function to perform on that number: a. solve for side c? b. solve for angle B? c. solve for angle C? d. get the semi-perimeter?

2 e. get the Perimeter? f. get Area? g. convert to radian? h. acute, right or obtuse triangle? i. equilateral, isoscelence or scalene triangle? j. draw the triangle? k. heron s or rational triangle? l. how many triangles it consist? 2. Construct a function that will calculate the side of the triangle using the law of sine. Note that Law of Sine states states: a/sina = b/sinb = c/sincc. Call this function in your main program. Below is a sample run: Input side a: 6.4 Input side b: 4.7 Input angle A (in degrees): 42 Choose a function to perform on that number: a. solve for side c? Function: a side c = Construct a function that will calculate the first angle of the triangle using the law of Sines. Call this function in your main program. Below is a sample run (with the same inputs) Function: b Angle B = 29 degrees

3 4. Construct a function that will calculate the last angle of the triangle. Note that the sum of the angles of a triangle is always 180 degrees. Call this function in your main program. Function: c Angle C = 109 degrees 5. Construct a function that will get the semi-perimeter of the triangle. A semi-perimeter is half the perimeter of a triangle. Call this function in your main program. Below is a sample run: Function: d Semi-perimeter = Construct a function that will get the perimeter of the triangle. Call this function in your main program. Function: e Perimeter = Construct a function that will determine the area of the triangle. Note that the heigth and base is not given so we cannot use the basic formula for the area of the triangle whic is ½ base * height. But we can use Heron s Formula (below, where s is the semi-perimeter) Function: f Area = 4.52 sq. units 8. Construct a function that will convert degree to radian of all the angles in the triangle. Note that 180 degrees is equal to π radians. Call this function in your main program. Below is a sample run:

4 Function: g Angle A = Angle B = Angle C = There are three types of triangles according to the measure of angles. Acute triangle: All angles are less than 90 degrees. Right triangle: Has one right angle (90 degrees). Obtuse triangle: Has an angle more than 90 degrees. Construct a function that will check whether the triangle is acute, right or obtuse. Call this function in your main program. Below is a sample run: Function: h Obtuse Triangle 10. There are three types of triangles according to how many sides (or angles) are equal. Equilateral triangle has 3 equal sides and angles (which is always 60 degrees). Isosceles triangle has 2 equal sides and angles. Scalene triangle has no equal sides and angles. Construct a function that will check whether the triangle is equilateral, isosceles or scalene. Call this function in your main program. Below is a sample run: Function: i Scalene Triangle 11. Construct a function that will draw the triangle for the user to visualize it. Call this function in your main program.

5 Function: j * * * * * * * * * * * * * * * 12. Construct a function that will check if the triangle is a heron s triangle or a rational triangle or none of the two. Heron s triangle is a triangle where in the area and the perimeter is equal.rational triangle is a triangle that has positive rational sides and a rational area. (Rational numbers means that the set of all numbers can be expressed as a quotient of two integers.) Call this function in your main program. Below is a sample run: Function: k Not a heronian and a rational triangle 13. Construct a function that will check how many triangles it consists. There can be no, one or two triangle. Take Note: If Angle A is acute and side b is greater than side c (a > b) then there is one triangle. If Angle A is acute and side b is less than side c (a < b) then o If a > bsina then there is two triangles. o If a = bsina then there is one triangle. o If a < bsina then there is no triangle. If Angle A is acute and side b is equal to side c (a = b) then there is one triangle. If Angle A is obtuse then o If a > b then there is one triangle. o If a = b then there is no triangle. o If a < b then there is no triangle

6 Function: l There is one triangle Time Table: WEEK 1 Construct the main program and functions 1 and 2. WEEK 2 Construct functions 3 and 4. WEEK 3 Construct functions 5 and 6. WEEK 4 Construct functions 7 and 8. WEEK 5 Construct functions 9. WEEK 6 Construct functions 10 and 11. WEEK 7 Construct functions 12 and 13. WEEK 8 Finalize project.

Chapter 8 Geometry We will discuss following concepts in this chapter.

Chapter 8 Geometry We will discuss following concepts in this chapter. Mat College Mathematics Updated on Nov 5, 009 Chapter 8 Geometry We will discuss following concepts in this chapter. Two Dimensional Geometry: Straight lines (parallel and perpendicular), Rays, Angles

More information

Heron Triangles. by Kathy Temple. Arizona Teacher Institute. Math Project Thesis

Heron Triangles. by Kathy Temple. Arizona Teacher Institute. Math Project Thesis Heron Triangles by Kathy Temple Arizona Teacher Institute Math Project Thesis In partial fulfillment of the M.S. Degree in Middle School Mathematics Teaching Leadership Department of Mathematics University

More information

25 The Law of Cosines and Its Applications

25 The Law of Cosines and Its Applications Arkansas Tech University MATH 103: Trigonometry Dr Marcel B Finan 5 The Law of Cosines and Its Applications The Law of Sines is applicable when either two angles and a side are given or two sides and an

More information

6.1 Basic Right Triangle Trigonometry

6.1 Basic Right Triangle Trigonometry 6.1 Basic Right Triangle Trigonometry MEASURING ANGLES IN RADIANS First, let s introduce the units you will be using to measure angles, radians. A radian is a unit of measurement defined as the angle at

More information

Law of Cosines. If the included angle is a right angle then the Law of Cosines is the same as the Pythagorean Theorem.

Law of Cosines. If the included angle is a right angle then the Law of Cosines is the same as the Pythagorean Theorem. Law of Cosines In the previous section, we learned how the Law of Sines could be used to solve oblique triangles in three different situations () where a side and two angles (SAA) were known, () where

More information

Give an expression that generates all angles coterminal with the given angle. Let n represent any integer. 9) 179

Give an expression that generates all angles coterminal with the given angle. Let n represent any integer. 9) 179 Trigonometry Chapters 1 & 2 Test 1 Name Provide an appropriate response. 1) Find the supplement of an angle whose measure is 7. Find the measure of each angle in the problem. 2) Perform the calculation.

More information

The Dot and Cross Products

The Dot and Cross Products The Dot and Cross Products Two common operations involving vectors are the dot product and the cross product. Let two vectors =,, and =,, be given. The Dot Product The dot product of and is written and

More information

Exact Values of the Sine and Cosine Functions in Increments of 3 degrees

Exact Values of the Sine and Cosine Functions in Increments of 3 degrees Exact Values of the Sine and Cosine Functions in Increments of 3 degrees The sine and cosine values for all angle measurements in multiples of 3 degrees can be determined exactly, represented in terms

More information

Classifying Lesson 1 Triangles

Classifying Lesson 1 Triangles Classifying Lesson 1 acute angle congruent scalene Classifying VOCABULARY right angle isosceles Venn diagram obtuse angle equilateral You classify many things around you. For example, you might choose

More information

Geometry: Classifying, Identifying, and Constructing Triangles

Geometry: Classifying, Identifying, and Constructing Triangles Geometry: Classifying, Identifying, and Constructing Triangles Lesson Objectives Teacher's Notes Lesson Notes 1) Identify acute, right, and obtuse triangles. 2) Identify scalene, isosceles, equilateral

More information

Geometry Notes RIGHT TRIANGLE TRIGONOMETRY

Geometry Notes RIGHT TRIANGLE TRIGONOMETRY Right Triangle Trigonometry Page 1 of 15 RIGHT TRIANGLE TRIGONOMETRY Objectives: After completing this section, you should be able to do the following: Calculate the lengths of sides and angles of a right

More information

Right Triangles A right triangle, as the one shown in Figure 5, is a triangle that has one angle measuring

Right Triangles A right triangle, as the one shown in Figure 5, is a triangle that has one angle measuring Page 1 9 Trigonometry of Right Triangles Right Triangles A right triangle, as the one shown in Figure 5, is a triangle that has one angle measuring 90. The side opposite to the right angle is the longest

More information

Preparation Prepare a set of standard triangle shapes for each student. The shapes are found in the Guess My Rule Cards handout.

Preparation Prepare a set of standard triangle shapes for each student. The shapes are found in the Guess My Rule Cards handout. Classifying Triangles Student Probe How are triangles A, B, and C alike? How are triangles A, B, and C different? A B C Answer: They are alike because they each have 3 sides and 3 angles. They are different

More information

Heron s Formula. Key Words: Triangle, area, Heron s formula, angle bisectors, incenter

Heron s Formula. Key Words: Triangle, area, Heron s formula, angle bisectors, incenter Heron s Formula Lesson Summary: Students will investigate the Heron s formula for finding the area of a triangle. The lab has students find the area using three different methods: Heron s, the basic formula,

More information

NEW MEXICO Grade 6 MATHEMATICS STANDARDS

NEW MEXICO Grade 6 MATHEMATICS STANDARDS PROCESS STANDARDS To help New Mexico students achieve the Content Standards enumerated below, teachers are encouraged to base instruction on the following Process Standards: Problem Solving Build new mathematical

More information

Trigonometric Functions and Triangles

Trigonometric Functions and Triangles Trigonometric Functions and Triangles Dr. Philippe B. Laval Kennesaw STate University August 27, 2010 Abstract This handout defines the trigonometric function of angles and discusses the relationship between

More information

ModuMath Basic Math Basic Math 1.1 - Naming Whole Numbers Basic Math 1.2 - The Number Line Basic Math 1.3 - Addition of Whole Numbers, Part I

ModuMath Basic Math Basic Math 1.1 - Naming Whole Numbers Basic Math 1.2 - The Number Line Basic Math 1.3 - Addition of Whole Numbers, Part I ModuMath Basic Math Basic Math 1.1 - Naming Whole Numbers 1) Read whole numbers. 2) Write whole numbers in words. 3) Change whole numbers stated in words into decimal numeral form. 4) Write numerals in

More information

Chapter 5.1 and 5.2 Triangles

Chapter 5.1 and 5.2 Triangles Chapter 5.1 and 5.2 Triangles Students will classify triangles. Students will define and use the Angle Sum Theorem. A triangle is formed when three non-collinear points are connected by segments. Each

More information

How To Solve The Pythagorean Triangle

How To Solve The Pythagorean Triangle Name Period CHAPTER 9 Right Triangles and Trigonometry Section 9.1 Similar right Triangles Objectives: Solve problems involving similar right triangles. Use a geometric mean to solve problems. Ex. 1 Use

More information

COMPSCI 230 Tutorial 5 more junit, white box testing

COMPSCI 230 Tutorial 5 more junit, white box testing COMPSCI 230 Tutorial 5 more junit, white box testing In the diagram below we have the following triangle types - Obtuse, Acute, Isosceles, Equilateral, Right Angle, and Pythagorean. In this tutorial we

More information

11.3 Curves, Polygons and Symmetry

11.3 Curves, Polygons and Symmetry 11.3 Curves, Polygons and Symmetry Polygons Simple Definition A shape is simple if it doesn t cross itself, except maybe at the endpoints. Closed Definition A shape is closed if the endpoints meet. Polygon

More information

Invention of the plane geometrical formulae - Part II

Invention of the plane geometrical formulae - Part II International Journal of Computational Engineering Research Vol, 03 Issue, Invention of the plane geometrical formulae - Part II Mr. Satish M. Kaple Asst. Teacher Mahatma Phule High School, Kherda Jalgaon

More information

Section 7.1 Solving Right Triangles

Section 7.1 Solving Right Triangles Section 7.1 Solving Right Triangles Note that a calculator will be needed for most of the problems we will do in class. Test problems will involve angles for which no calculator is needed (e.g., 30, 45,

More information

Algebra Geometry Glossary. 90 angle

Algebra Geometry Glossary. 90 angle lgebra Geometry Glossary 1) acute angle an angle less than 90 acute angle 90 angle 2) acute triangle a triangle where all angles are less than 90 3) adjacent angles angles that share a common leg Example:

More information

Tennessee Mathematics Standards 2009-2010 Implementation. Grade Six Mathematics. Standard 1 Mathematical Processes

Tennessee Mathematics Standards 2009-2010 Implementation. Grade Six Mathematics. Standard 1 Mathematical Processes Tennessee Mathematics Standards 2009-2010 Implementation Grade Six Mathematics Standard 1 Mathematical Processes GLE 0606.1.1 Use mathematical language, symbols, and definitions while developing mathematical

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

UNIT H1 Angles and Symmetry Activities

UNIT H1 Angles and Symmetry Activities UNIT H1 Angles and Symmetry Activities Activities H1.1 Lines of Symmetry H1.2 Rotational and Line Symmetry H1.3 Symmetry of Regular Polygons H1.4 Interior Angles in Polygons Notes and Solutions (1 page)

More information

Incenter Circumcenter

Incenter Circumcenter TRIANGLE: Centers: Incenter Incenter is the center of the inscribed circle (incircle) of the triangle, it is the point of intersection of the angle bisectors of the triangle. The radius of incircle is

More information

Right Triangles 4 A = 144 A = 16 12 5 A = 64

Right Triangles 4 A = 144 A = 16 12 5 A = 64 Right Triangles If I looked at enough right triangles and experimented a little, I might eventually begin to notice a relationship developing if I were to construct squares formed by the legs of a right

More information

Right Triangle Trigonometry

Right Triangle Trigonometry Section 6.4 OBJECTIVE : Right Triangle Trigonometry Understanding the Right Triangle Definitions of the Trigonometric Functions otenuse osite side otenuse acent side acent side osite side We will be concerned

More information

Evaluating trigonometric functions

Evaluating trigonometric functions MATH 1110 009-09-06 Evaluating trigonometric functions Remark. Throughout this document, remember the angle measurement convention, which states that if the measurement of an angle appears without units,

More information

ALGEBRA 2/TRIGONOMETRY

ALGEBRA 2/TRIGONOMETRY ALGEBRA /TRIGONOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION ALGEBRA /TRIGONOMETRY Thursday, January 9, 015 9:15 a.m to 1:15 p.m., only Student Name: School Name: The possession

More information

ACT Math Vocabulary. Altitude The height of a triangle that makes a 90-degree angle with the base of the triangle. Altitude

ACT Math Vocabulary. Altitude The height of a triangle that makes a 90-degree angle with the base of the triangle. Altitude ACT Math Vocabular Acute When referring to an angle acute means less than 90 degrees. When referring to a triangle, acute means that all angles are less than 90 degrees. For eample: Altitude The height

More information

Algebra. Exponents. Absolute Value. Simplify each of the following as much as possible. 2x y x + y y. xxx 3. x x x xx x. 1. Evaluate 5 and 123

Algebra. Exponents. Absolute Value. Simplify each of the following as much as possible. 2x y x + y y. xxx 3. x x x xx x. 1. Evaluate 5 and 123 Algebra Eponents Simplify each of the following as much as possible. 1 4 9 4 y + y y. 1 5. 1 5 4. y + y 4 5 6 5. + 1 4 9 10 1 7 9 0 Absolute Value Evaluate 5 and 1. Eliminate the absolute value bars from

More information

Math Placement Test Study Guide. 2. The test consists entirely of multiple choice questions, each with five choices.

Math Placement Test Study Guide. 2. The test consists entirely of multiple choice questions, each with five choices. Math Placement Test Study Guide General Characteristics of the Test 1. All items are to be completed by all students. The items are roughly ordered from elementary to advanced. The expectation is that

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

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Santa Monica College COMPASS Geometry Sample Test MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Find the area of the shaded region. 1) 5 yd 6 yd

More information

9 Right Triangle Trigonometry

9 Right Triangle Trigonometry www.ck12.org CHAPTER 9 Right Triangle Trigonometry Chapter Outline 9.1 THE PYTHAGOREAN THEOREM 9.2 CONVERSE OF THE PYTHAGOREAN THEOREM 9.3 USING SIMILAR RIGHT TRIANGLES 9.4 SPECIAL RIGHT TRIANGLES 9.5

More information

Name: Chapter 4 Guided Notes: Congruent Triangles. Chapter Start Date: Chapter End Date: Test Day/Date: Geometry Fall Semester

Name: Chapter 4 Guided Notes: Congruent Triangles. Chapter Start Date: Chapter End Date: Test Day/Date: Geometry Fall Semester Name: Chapter 4 Guided Notes: Congruent Triangles Chapter Start Date: Chapter End Date: Test Day/Date: Geometry Fall Semester CH. 4 Guided Notes, page 2 4.1 Apply Triangle Sum Properties triangle polygon

More information

GEOMETRY: TRIANGLES COMMON MISTAKES

GEOMETRY: TRIANGLES COMMON MISTAKES GEOMETRY: TRIANGLES COMMON MISTAKES 1 Geometry-Classifying Triangles How Triangles are Classified Types-Triangles are classified by Angles or Sides By Angles- Obtuse Triangles-triangles with one obtuse

More information

Angles and Quadrants. Angle Relationships and Degree Measurement. Chapter 7: Trigonometry

Angles and Quadrants. Angle Relationships and Degree Measurement. Chapter 7: Trigonometry Chapter 7: Trigonometry Trigonometry is the study of angles and how they can be used as a means of indirect measurement, that is, the measurement of a distance where it is not practical or even possible

More information

Invention of the plane geometrical formulae - Part I

Invention of the plane geometrical formulae - Part I International Journal of Scientific and Research Publications, Volume 3, Issue 4, April 013 1 ISSN 50-3153 Invention of the plane geometrical formulae - Part I Mr. Satish M. Kaple Asst. Teacher Mahatma

More information

1. Introduction sine, cosine, tangent, cotangent, secant, and cosecant periodic

1. Introduction sine, cosine, tangent, cotangent, secant, and cosecant periodic 1. Introduction There are six trigonometric functions: sine, cosine, tangent, cotangent, secant, and cosecant; abbreviated as sin, cos, tan, cot, sec, and csc respectively. These are functions of a single

More information

Thnkwell s Homeschool Precalculus Course Lesson Plan: 36 weeks

Thnkwell s Homeschool Precalculus Course Lesson Plan: 36 weeks Thnkwell s Homeschool Precalculus Course Lesson Plan: 36 weeks Welcome to Thinkwell s Homeschool Precalculus! We re thrilled that you ve decided to make us part of your homeschool curriculum. This lesson

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

Estimating Angle Measures

Estimating Angle Measures 1 Estimating Angle Measures Compare and estimate angle measures. You will need a protractor. 1. Estimate the size of each angle. a) c) You can estimate the size of an angle by comparing it to an angle

More information

GEOMETRY CONCEPT MAP. Suggested Sequence:

GEOMETRY CONCEPT MAP. Suggested Sequence: CONCEPT MAP GEOMETRY August 2011 Suggested Sequence: 1. Tools of Geometry 2. Reasoning and Proof 3. Parallel and Perpendicular Lines 4. Congruent Triangles 5. Relationships Within Triangles 6. Polygons

More information

Core Maths C2. Revision Notes

Core Maths C2. Revision Notes Core Maths C Revision Notes November 0 Core Maths C Algebra... Polnomials: +,,,.... Factorising... Long division... Remainder theorem... Factor theorem... 4 Choosing a suitable factor... 5 Cubic equations...

More information

Graphing Trigonometric Skills

Graphing Trigonometric Skills Name Period Date Show all work neatly on separate paper. (You may use both sides of your paper.) Problems should be labeled clearly. If I can t find a problem, I ll assume it s not there, so USE THE TEMPLATE

More information

CSU Fresno Problem Solving Session. Geometry, 17 March 2012

CSU Fresno Problem Solving Session. Geometry, 17 March 2012 CSU Fresno Problem Solving Session Problem Solving Sessions website: http://zimmer.csufresno.edu/ mnogin/mfd-prep.html Math Field Day date: Saturday, April 21, 2012 Math Field Day website: http://www.csufresno.edu/math/news

More information

Unit 8 Angles, 2D and 3D shapes, perimeter and area

Unit 8 Angles, 2D and 3D shapes, perimeter and area Unit 8 Angles, 2D and 3D shapes, perimeter and area Five daily lessons Year 6 Spring term Recognise and estimate angles. Use a protractor to measure and draw acute and obtuse angles to Page 111 the nearest

More information

Which two rectangles fit together, without overlapping, to make a square?

Which two rectangles fit together, without overlapping, to make a square? SHAPE level 4 questions 1. Here are six rectangles on a grid. A B C D E F Which two rectangles fit together, without overlapping, to make a square?... and... International School of Madrid 1 2. Emily has

More information

Geometry of 2D Shapes

Geometry of 2D Shapes Name: Geometry of 2D Shapes Answer these questions in your class workbook: 1. Give the definitions of each of the following shapes and draw an example of each one: a) equilateral triangle b) isosceles

More information

of surface, 569-571, 576-577, 578-581 of triangle, 548 Associative Property of addition, 12, 331 of multiplication, 18, 433

of surface, 569-571, 576-577, 578-581 of triangle, 548 Associative Property of addition, 12, 331 of multiplication, 18, 433 Absolute Value and arithmetic, 730-733 defined, 730 Acute angle, 477 Acute triangle, 497 Addend, 12 Addition associative property of, (see Commutative Property) carrying in, 11, 92 commutative property

More information

Additional Topics in Math

Additional Topics in Math Chapter Additional Topics in Math In addition to the questions in Heart of Algebra, Problem Solving and Data Analysis, and Passport to Advanced Math, the SAT Math Test includes several questions that are

More information

Math 531, Exam 1 Information.

Math 531, Exam 1 Information. Math 531, Exam 1 Information. 9/21/11, LC 310, 9:05-9:55. Exam 1 will be based on: Sections 1A - 1F. The corresponding assigned homework problems (see http://www.math.sc.edu/ boylan/sccourses/531fa11/531.html)

More information

New York State Student Learning Objective: Regents Geometry

New York State Student Learning Objective: Regents Geometry New York State Student Learning Objective: Regents Geometry All SLOs MUST include the following basic components: Population These are the students assigned to the course section(s) in this SLO all students

More information

+ 4θ 4. We want to minimize this function, and we know that local minima occur when the derivative equals zero. Then consider

+ 4θ 4. We want to minimize this function, and we know that local minima occur when the derivative equals zero. Then consider Math Xb Applications of Trig Derivatives 1. A woman at point A on the shore of a circular lake with radius 2 miles wants to arrive at the point C diametrically opposite A on the other side of the lake

More information

Semester 2, Unit 4: Activity 21

Semester 2, Unit 4: Activity 21 Resources: SpringBoard- PreCalculus Online Resources: PreCalculus Springboard Text Unit 4 Vocabulary: Identity Pythagorean Identity Trigonometric Identity Cofunction Identity Sum and Difference Identities

More information

Conjectures for Geometry for Math 70 By I. L. Tse

Conjectures for Geometry for Math 70 By I. L. Tse Conjectures for Geometry for Math 70 By I. L. Tse Chapter Conjectures 1. Linear Pair Conjecture: If two angles form a linear pair, then the measure of the angles add up to 180. Vertical Angle Conjecture:

More information

Cumulative Test. 161 Holt Geometry. Name Date Class

Cumulative Test. 161 Holt Geometry. Name Date Class Choose the best answer. 1. P, W, and K are collinear, and W is between P and K. PW 10x, WK 2x 7, and PW WK 6x 11. What is PK? A 2 C 90 B 6 D 11 2. RM bisects VRQ. If mmrq 2, what is mvrm? F 41 H 9 G 2

More information

Course 2 Summer Packet For students entering 8th grade in the fall

Course 2 Summer Packet For students entering 8th grade in the fall Course 2 Summer Packet For students entering 8th grade in the fall The summer packet is comprised of important topics upcoming eighth graders should know upon entering math in the fall. Please use your

More information

2312 test 2 Fall 2010 Form B

2312 test 2 Fall 2010 Form B 2312 test 2 Fall 2010 Form B 1. Write the slope-intercept form of the equation of the line through the given point perpendicular to the given lin point: ( 7, 8) line: 9x 45y = 9 2. Evaluate the function

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

Ira Fine and Thomas J. Osler Department of Mathematics Rowan University Glassboro, NJ 08028. osler@rowan.edu. 1. Introduction

Ira Fine and Thomas J. Osler Department of Mathematics Rowan University Glassboro, NJ 08028. osler@rowan.edu. 1. Introduction 1 08/0/00 THE REMARKABLE INCIRCLE OF A TRIANGLE Ira Fine and Thomas J. Osler Department of Mathematics Rowan University Glassboro, NJ 0808 osler@rowan.edu 1. Introduction The incircle of a triangle is

More information

Solutions to Exercises, Section 5.1

Solutions to Exercises, Section 5.1 Instructor s Solutions Manual, Section 5.1 Exercise 1 Solutions to Exercises, Section 5.1 1. Find all numbers t such that ( 1 3,t) is a point on the unit circle. For ( 1 3,t)to be a point on the unit circle

More information

(c) What is the value of the digit 3 in this number? [1] What is the difference in the place values of the digits 2 and 6 in

(c) What is the value of the digit 3 in this number? [1] What is the difference in the place values of the digits 2 and 6 in Assessment Test for Singapore Primary Mathematics 4A Standards Edition This test covers material taught in Primary Mathematics 4A Standards Edition (http://www.singaporemath.com/) 1. Consider the number

More information

Essential Mathematics for Computer Graphics fast

Essential Mathematics for Computer Graphics fast John Vince Essential Mathematics for Computer Graphics fast Springer Contents 1. MATHEMATICS 1 Is mathematics difficult? 3 Who should read this book? 4 Aims and objectives of this book 4 Assumptions made

More information

Week 13 Trigonometric Form of Complex Numbers

Week 13 Trigonometric Form of Complex Numbers Week Trigonometric Form of Complex Numbers Overview In this week of the course, which is the last week if you are not going to take calculus, we will look at how Trigonometry can sometimes help in working

More information

Pythagoras Theorem. Page I can... 1... identify and label right-angled triangles. 2... explain Pythagoras Theorem. 4... calculate the hypotenuse

Pythagoras Theorem. Page I can... 1... identify and label right-angled triangles. 2... explain Pythagoras Theorem. 4... calculate the hypotenuse Pythagoras Theorem Page I can... 1... identify and label right-angled triangles 2... eplain Pythagoras Theorem 4... calculate the hypotenuse 5... calculate a shorter side 6... determine whether a triangle

More information

SOLVING TRIGONOMETRIC EQUATIONS

SOLVING TRIGONOMETRIC EQUATIONS Mathematics Revision Guides Solving Trigonometric Equations Page 1 of 17 M.K. HOME TUITION Mathematics Revision Guides Level: AS / A Level AQA : C2 Edexcel: C2 OCR: C2 OCR MEI: C2 SOLVING TRIGONOMETRIC

More information

Higher Education Math Placement

Higher Education Math Placement Higher Education Math Placement Placement Assessment Problem Types 1. Whole Numbers, Fractions, and Decimals 1.1 Operations with Whole Numbers Addition with carry Subtraction with borrowing Multiplication

More information

Expression. Variable Equation Polynomial Monomial Add. Area. Volume Surface Space Length Width. Probability. Chance Random Likely Possibility Odds

Expression. Variable Equation Polynomial Monomial Add. Area. Volume Surface Space Length Width. Probability. Chance Random Likely Possibility Odds Isosceles Triangle Congruent Leg Side Expression Equation Polynomial Monomial Radical Square Root Check Times Itself Function Relation One Domain Range Area Volume Surface Space Length Width Quantitative

More information

Visualizing Triangle Centers Using Geogebra

Visualizing Triangle Centers Using Geogebra Visualizing Triangle Centers Using Geogebra Sanjay Gulati Shri Shankaracharya Vidyalaya, Hudco, Bhilai India http://mathematicsbhilai.blogspot.com/ sanjaybhil@gmail.com ABSTRACT. In this paper, we will

More information

Trigonometry Review with the Unit Circle: All the trig. you ll ever need to know in Calculus

Trigonometry Review with the Unit Circle: All the trig. you ll ever need to know in Calculus Trigonometry Review with the Unit Circle: All the trig. you ll ever need to know in Calculus Objectives: This is your review of trigonometry: angles, six trig. functions, identities and formulas, graphs:

More information

FORM 3 MATHEMATICS SCHEME C TIME: 30 minutes Non Calculator Paper INSTRUCTIONS TO CANDIDATES

FORM 3 MATHEMATICS SCHEME C TIME: 30 minutes Non Calculator Paper INSTRUCTIONS TO CANDIDATES DIRECTORATE FOR QUALITY AND STANDARDS IN EDUCATION Department for Curriculum Management and elearning Educational Assessment Unit Annual Examinations for Secondary Schools 2011 C FORM 3 MATHEMATICS SCHEME

More information

D.3. Angles and Degree Measure. Review of Trigonometric Functions

D.3. Angles and Degree Measure. Review of Trigonometric Functions APPENDIX D Precalculus Review D7 SECTION D. Review of Trigonometric Functions Angles and Degree Measure Radian Measure The Trigonometric Functions Evaluating Trigonometric Functions Solving Trigonometric

More information

Teaching Guidelines. Knowledge and Skills: Can specify defining characteristics of common polygons

Teaching Guidelines. Knowledge and Skills: Can specify defining characteristics of common polygons CIRCLE FOLDING Teaching Guidelines Subject: Mathematics Topics: Geometry (Circles, Polygons) Grades: 4-6 Concepts: Property Diameter Radius Chord Perimeter Area Knowledge and Skills: Can specify defining

More information

Trigonometry. An easy way to remember trigonometric properties is:

Trigonometry. An easy way to remember trigonometric properties is: Trigonometry It is possible to solve many force and velocity problems by drawing vector diagrams. However, the degree of accuracy is dependent upon the exactness of the person doing the drawing and measuring.

More information

Name Period 10/22 11/1 10/31 11/1. Chapter 4 Section 1 and 2: Classifying Triangles and Interior and Exterior Angle Theorem

Name Period 10/22 11/1 10/31 11/1. Chapter 4 Section 1 and 2: Classifying Triangles and Interior and Exterior Angle Theorem Name Period 10/22 11/1 Vocabulary Terms: Acute Triangle Right Triangle Obtuse Triangle Scalene Isosceles Equilateral Equiangular Interior Angle Exterior Angle 10/22 Classify and Triangle Angle Theorems

More information

4.3 & 4.8 Right Triangle Trigonometry. Anatomy of Right Triangles

4.3 & 4.8 Right Triangle Trigonometry. Anatomy of Right Triangles 4.3 & 4.8 Right Triangle Trigonometry Anatomy of Right Triangles The right triangle shown at the right uses lower case a, b and c for its sides with c being the hypotenuse. The sides a and b are referred

More information

Algebra and Geometry Review (61 topics, no due date)

Algebra and Geometry Review (61 topics, no due date) Course Name: Math 112 Credit Exam LA Tech University Course Code: ALEKS Course: Trigonometry Instructor: Course Dates: Course Content: 159 topics Algebra and Geometry Review (61 topics, no due date) Properties

More information

SAT Subject Math Level 2 Facts & Formulas

SAT Subject Math Level 2 Facts & Formulas Numbers, Sequences, Factors Integers:..., -3, -2, -1, 0, 1, 2, 3,... Reals: integers plus fractions, decimals, and irrationals ( 2, 3, π, etc.) Order Of Operations: Arithmetic Sequences: PEMDAS (Parentheses

More information

Geometry Enduring Understandings Students will understand 1. that all circles are similar.

Geometry Enduring Understandings Students will understand 1. that all circles are similar. High School - Circles Essential Questions: 1. Why are geometry and geometric figures relevant and important? 2. How can geometric ideas be communicated using a variety of representations? ******(i.e maps,

More information

This activity will guide you to create formulas and use some of the built-in math functions in EXCEL.

This activity will guide you to create formulas and use some of the built-in math functions in EXCEL. Purpose: This activity will guide you to create formulas and use some of the built-in math functions in EXCEL. The three goals of the spreadsheet are: Given a triangle with two out of three angles known,

More information

Grade 3 Core Standard III Assessment

Grade 3 Core Standard III Assessment Grade 3 Core Standard III Assessment Geometry and Measurement Name: Date: 3.3.1 Identify right angles in two-dimensional shapes and determine if angles are greater than or less than a right angle (obtuse

More information

Final Review Geometry A Fall Semester

Final Review Geometry A Fall Semester Final Review Geometry Fall Semester Multiple Response Identify one or more choices that best complete the statement or answer the question. 1. Which graph shows a triangle and its reflection image over

More information

Lesson 9: Radicals and Conjugates

Lesson 9: Radicals and Conjugates Student Outcomes Students understand that the sum of two square roots (or two cube roots) is not equal to the square root (or cube root) of their sum. Students convert expressions to simplest radical form.

More information

ACT Math Facts & Formulas

ACT Math Facts & Formulas Numbers, Sequences, Factors Integers:..., -3, -2, -1, 0, 1, 2, 3,... Rationals: fractions, tat is, anyting expressable as a ratio of integers Reals: integers plus rationals plus special numbers suc as

More information

Grade 8 Mathematics Geometry: Lesson 2

Grade 8 Mathematics Geometry: Lesson 2 Grade 8 Mathematics Geometry: Lesson 2 Read aloud to the students the material that is printed in boldface type inside the boxes. Information in regular type inside the boxes and all information outside

More information

http://www.castlelearning.com/review/teacher/assignmentprinting.aspx 5. 2 6. 2 1. 10 3. 70 2. 55 4. 180 7. 2 8. 4

http://www.castlelearning.com/review/teacher/assignmentprinting.aspx 5. 2 6. 2 1. 10 3. 70 2. 55 4. 180 7. 2 8. 4 of 9 1/28/2013 8:32 PM Teacher: Mr. Sime Name: 2 What is the slope of the graph of the equation y = 2x? 5. 2 If the ratio of the measures of corresponding sides of two similar triangles is 4:9, then the

More information

Activities Grades K 2 THE FOUR-SQUARE QUILT. Put triangles together to make patterns.

Activities Grades K 2 THE FOUR-SQUARE QUILT. Put triangles together to make patterns. Activities Grades K 2 www.exploratorium.edu/geometryplayground/activities THE FOUR-SQUARE QUILT Put triangles together to make patterns. [45 minutes] Materials: Four-Square Quilt Template (attached) Triangle

More information

Real World Performance Tasks

Real World Performance Tasks Real World Performance Tasks Real World Real Life, Real Data, Real- Time - These activities put students into real life scenarios where they use real- time, real data to solve problems. In the Seriously

More information

Trigonometry LESSON ONE - Degrees and Radians Lesson Notes

Trigonometry LESSON ONE - Degrees and Radians Lesson Notes 210 180 = 7 6 Trigonometry Example 1 Define each term or phrase and draw a sample angle. Angle Definitions a) angle in standard position: Draw a standard position angle,. b) positive and negative angles:

More information

Pythagorean Theorem: 9. x 2 2

Pythagorean Theorem: 9. x 2 2 Geometry Chapter 8 - Right Triangles.7 Notes on Right s Given: any 3 sides of a Prove: the is acute, obtuse, or right (hint: use the converse of Pythagorean Theorem) If the (longest side) 2 > (side) 2

More information

Intermediate Math Circles October 10, 2012 Geometry I: Angles

Intermediate Math Circles October 10, 2012 Geometry I: Angles Intermediate Math Circles October 10, 2012 Geometry I: Angles Over the next four weeks, we will look at several geometry topics. Some of the topics may be familiar to you while others, for most of you,

More information

One advantage of this algebraic approach is that we can write down

One advantage of this algebraic approach is that we can write down . Vectors and the dot product A vector v in R 3 is an arrow. It has a direction and a length (aka the magnitude), but the position is not important. Given a coordinate axis, where the x-axis points out

More information

Definitions, Postulates and Theorems

Definitions, Postulates and Theorems Definitions, s and s Name: Definitions Complementary Angles Two angles whose measures have a sum of 90 o Supplementary Angles Two angles whose measures have a sum of 180 o A statement that can be proven

More information

Geometry Progress Ladder

Geometry Progress Ladder Geometry Progress Ladder Maths Makes Sense Foundation End-of-year objectives page 2 Maths Makes Sense 1 2 End-of-block objectives page 3 Maths Makes Sense 3 4 End-of-block objectives page 4 Maths Makes

More information

ALGEBRA 2/ TRIGONOMETRY

ALGEBRA 2/ TRIGONOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION ALGEBRA 2/ TRIGONOMETRY Wednesday, June 18, 2014 1:15 4:15 p.m. SAMPLE RESPONSE SET Table of Contents Question 28...................

More information