Top-down technique / Stepwise Refinement and Algorithms

Slides:



Advertisements
Similar presentations
Yes you do need to write this.
Advertisements

Area of Complex Figures
In our lesson today we will learn how to find the area of a building.
Triangles, Quadrilaterals, Nets, Prisms & Composite Polygons
Today, I will learn the formula for finding the area of a rectangle.
Divide each side by 2. Write original equation. Write 3x + 2y = 8 so that y is a function of x. EXAMPLE 2 Rewrite an equation Subtract 3x from each side.
Problem Solving: Area and Surface Area of Composite Figures
Do Now. Homework Solutions 1)c 2 – 26c – 56 = 0 (c – 28)(c + 2) = 0 {-2, 28} 2)n 2 + 4n – 32 = 0 (n + 8)(n – 4) = 0 {-8, 4} 3)h 2 + 2h – 35 = 0 (h + 7)(h.
Calculating the area of a TRIGLE AN.
Rectangle The area of a rectangle is by multiplying length and height. The perimeter of a rectangle is the distance around the outside of the rectangle.
What is area? The amount of space that a figure encloses
Perimeter & Area Lessons 19 & 20.
Objective How to solve Integer problems
Finding the area of a trapezoid 6.G.A.1 Find the area of right triangles, other triangles, special quadrilaterals, and polygons by composing into rectangles.
GCSE Mathematics Targeting Grade C SSM 3.
EXAMPLE 3 Use the Area of a Sector Theorem Use the diagram to find the area of V. SOLUTION Area of sector TVU = Area of V m TU 360 ° Write formula for.
11-7 Area of Complex Figures (pages ) Standard  P8.
Areas and Perimeter of Rectangles, Square, Triangles and Circles
Literal Equations. ANSWER 2a + 3 = Write an equation for “ 3 more than twice a is 24. ” ANSWER 64 ft 2 2.A square has a side length of 8 feet. Find.
Review To introduce approaches to working out perimeter, area and volume of 2D and 3D shapes. 2.
Top-down approach / Stepwise Refinement & Procedures & Functions.
Warm-Up Exercises Subtract b from each side. Write original equation. Solve ax + b = c for x. STEP 1 SOLUTION Solve ax + b = c for x. Then use the solution.
Area, Circumference & Perimeter
Areas of Parallelograms and Trapezoids Objective: Learn to find the area of parallelograms and trapezoids.
Area of a Right Angled Triangle
04/02/ Procedures Top-down approach / Stepwise Refinement & Sub Procedures.
square rectangle parallelogram trapezoid triangle.
Area of Composite Figures
Perimeter, Circumference and Area. Perimeter and Circumference Perimeter : The distance around a geometric figure. Circumference: The distance around.
Copyright©amberpasillas2010. The area of a rectangle is equal to the base times the height. Also known as length times width. height base (h) (b) A =
Find the Area of a Square Example 1 Find the area of the square. SOLUTION Use the formula for the area of a square and substitute 9 for s. A = s 2 Formula.
Perimeter and Area Formulas.  Perimeter is the distance around an object. It is easily the simplest formula. Simply add up all the sides of the shape,
Area & Perimeter Learning Objectives: 1.Learn to find perimeter and area of simple & compound/composite shapes. 2.Practice solving problems involving area.
Objective Students will solve practical area and perimeter problems involving composite plane figures.
Holt Algebra Solving Radical Equations Warm Up(Add to Hw) Solve each equation. 1. 3x +5 = x + 1 = 2x – (x + 7)(x – 4) = 0 5. x 2.
Course Area of Composite Figures 10-3 Area of Composite Figures Course 1 Warm Up Warm Up Lesson Presentation Lesson Presentation Problem of the.
Warm Up 8/6/14 Write each sentence as an expression: 1.Multiply n by 4, and then add 3 to your answer. 2.Add 3 to n, and then multiply your answer by 4.
Module 3 Lesson 1 Investigating Perimeter and Area Formulas.
Lesson 91 Warm Up Pg. 474.
Triangles, Quadrilaterals, Nets, Prisms & Composite Polygons
Area of a Triangle These two triangles are identical.
Areas of Parallelograms and Trapezoids
Areas of Parallelograms and Trapezoids
Rewrite a formula with three variables
EXAMPLE 1 Finding Area and Perimeter of a Triangle
Area Model Multiplication
Dividing by a number is the inverse of multiplying by that number
Area of Composite Figures
Area of a Trapezoid.
Section 11-5 Solving Radical Equations
Multiplication Equations
Finding the Area of Special Quadrilaterals
3 + 2c³ Finding Areas of Triangles 4c
Area of Triangles and Parallelograms
Top-down approach / Stepwise Refinement & Sub Procedures
Teacher tube:.
Multiplication Equations
1-5 Geometric Formulas Polygons
OBJECTIVE: Students will solve multistep equations.
Warm Up Solve each equation
Finding the Area of Triangles
Area of Triangles.
This is the side of a rectangle with 16 blocks total
Area and Perimeter Review
Friday, 24 May 2019 Formulae for Finding the Area of the Rectangle, Triangle, Parallelogram and Trapezium.
By- Sabrina,Julianna, and Killian
Areas of Parallelograms and Trapezoids
Algebra with Whole Numbers
Counting Shapes.
Introduction to Programming
Presentation transcript:

Top-down technique / Stepwise Refinement and Algorithms 20/06/2019

Learning Objectives: Explain the top down approach to problem solving / Stepwise Refinement . Turn a: Problem into a mathematical formula. Problem into a series of stages (algorithm). Algorithm into a flow diagram. 20/06/2019

Top-Down Technique / Stepwise Refinement A problem solving technique: The problem is divided up into a number of smaller problems called modules. Each one is solved separately. Then each module is combined to form a solution to the whole problem. 20/06/2019

Algorithm An explained solution to a problem. There are a number of ways of presenting algorithms. 20/06/2019

How do we find the area of a 'house' made up from a square and a triangle? 20/06/2019

Prose (language description) / / Structured English Find the area of the triangle by multiplying the base by the height and halving. Find the area of the rectangle by multiplying the width by the breadth. Then add the area of the triangle and rectangle together. Each sentence is a module. 20/06/2019

Formulae Each formula is a module. AT = ½ BH AR = W + H + W + H BT = Base of the triangle HT = Height of the triangle W = Width of rectangle BR = Breadth of rectangle AT = Area of the triangle AR = Area of the rectangle AT = ½ BH AR = W + H + W + H = 2 * (H + W) Area of the house = AT + AR Each formula is a module. 20/06/2019

Ordered Steps / Structured English Find the height and base of the triangle. Find the area of the triangle by multiplying the height of the triangle by the base of the triangle, and halving. Find the width and breadth of the rectangle. Find the area of the rectangle by adding the width of the rectangle to the breadth of the rectangle, and multiplying by 2. Add the areas of the triangle and rectangle together. Each step is a module. 20/06/2019

Flowchart Ordered steps using arrows to point from one instruction to the next instead of numbers. Find the height and base of the triangle. Find the area of the triangle by multiplying the height of the triangle by the base of the triangle, and halving. Find the width and breadth of the rectangle. Find the area of the rectangle by adding the width of the rectangle to the breadth of the rectangle, and multiplying by 2. Add the areas of the triangle and rectangle together. 20/06/2019

Plenary Explain the top-down approach to problem solving / Stepwise Refinement . 20/06/2019

Top-Down Technique / Stepwise Refinement A problem solving technique: The problem is divided up into a number of smaller problems. Each one is solved separately. Then each one is combined to form a solution to the whole problem. 20/06/2019