Chapter two Lesson Eleven: Expressions © www.waxkabaro.com.

Slides:



Advertisements
Similar presentations
Unit 2: Engineering Design Process
Advertisements

Algebra 1 Mini-Lessons Which of the following shows the equation below correctly solved for a? b = 4a − 17 − 2b A. B. C. D. MA.912.A.3.3: Solve literal.
CHAPTER 8 Geometry Slide 2Copyright 2012, 2008, 2004, 2000 Pearson Education, Inc. 8.1Basic Geometric Figures 8.2Perimeter 8.3Area 8.4Circles 8.5Volume.
Warm-up Pre-test.
VOLUME OF TRIANGULAR PRISMS AND CYLINDERS. MG1.3 Know and use the formulas for the volume of triangular prisms and cylinders (area of base × height);
Functions and Equations of Two Variables Lesson 6.1.
~ Chapter 2 ~ Algebra I Algebra I Solving Equations
1.4: Rewrite Formulas & Equations
Welcome to Jeopardy!.
8 th Grade Math Chapter 9b Review. Chapter 9b Review 1)Give the formulas for: a)area of a circle b) circumference of a circle.
Perimeter & Area Lessons 19 & 20.
Foundations of Technology Calculating Area and Volume
3/30 Take out paper and write the formula for a: Circumference Area Circle Area Parallelogram Area Triangle Area Regular Polygon Volume Rectangular Prism.
INPUT/OUTPUT STATEMENT ADDITION SLIDES. Console.ReadLine() – Use to get the input (String) from user Convert string to other data type – int.Parse() 
Using the formula sheet Equations typically contain one or more letters These letters are called variables Variables : an unknown in an equation EXAMPLE:
Chapter 10 Test Formula Review.  Find the circumference of a circle with a diameter of 10. Identify the formula needed for the following questions.
Bell Work: Find the Volume: V =  r 2 h =  (24 2 )(8) = 4608  in 3 4 ft 8 in.
Sec 1 Express Mathematics Chapter 14: Perimeter and Area of Plane Figures.
Areas and Perimeter of Rectangles, Square, Triangles and Circles
Surface Area Surface area is found by finding the area of all the faces and then adding those answers up. Units 2 because it is area!
Welcome to Jeopardy Rules Divide into groups. Each group will take turns in choosing a question. Each group will be given time to answer the question.
Surface Area of Cylinders Unit 5, Lesson 3. What is a Cylinder? Definition: –A three dimensional figure with 2 circular bases. Formula for Surface Area:
General Maths: Unit 1 Linear Algebra. 2A – Substitution Linear Algebra Using the calculator to solve substitution problems…. example “ | ” sign.
DIAGNOSTIC ERROR ANALYSIS MEASUREMENT & GEOMETRY.
Circumference Lesson #33. What is Circumference? The distance around the outside of a circle is called the circumference (essentially, it is the perimeter.
Geometry 9-5 Changing Dimensions (Proportionally) If you change each dimension of a figure, the figure will be similar only larger or smaller. Double each.
Volume: Prisms and Cylinders
Volume of Rectangular Prisms and Cylinders. Question 1 What is volume? * the number of cubic units needed to fill the space inside a figure.
Unit 8, Lesson 4 Surface Area Standard: MG 3.0 Objective: Find the volume and surface area of prisms and cylinders.
Perimeter, Area, and Volume Using algebraic expressions solve for measures in geometric figures as well as for perimeter, area, and volume.
3x 2 4x 6 Write an expression that represents the area of the rectangle. Example 1 Steps for Exponent Applications 1) Write the appropriate formula 2)
Warm up! Find the surface area of the backpack to the nearest inch:
Warm up! Find the surface area of the backpack to the nearest inch:
Geometry Formulas Section Formulas  Perimeter of a Triangle:  Area of a rectangle:  Volume of a box:
Chapter Two Operators and Expressions Lesson Seven.
INPUT/OUTPUT STATEMENT ADDITION SLIDES. Console.ReadLine() – Use to get the input (String) from user Convert string to other data type – int.Parse() 
Geometry/Trig 2Name: __________________________ Total Area and Volume Excel ExplorationDate: ___________________________ 1) Follow the examples to create.
 To find the numerical value of the expression, simply substitute the variables in the expression with the given number. Evaluate: 2x + 7, if x = 4 Substitute.
Area and Perimeter By: Julia Lopez. Perimeter of a Square The formula of a square to find the perimeter of a square is: S+S+S+S P= S+S+S+S P=
Formulas of Geometric Shapes ZACHARY SWANGER MATHEMATICS GRADES 5-8.
Notes Over 1.2 Express the power in words. Then write the meaning. Word Meaning.
Starter Activity: Perimeter 1 Calculate the distance around this shape (all angles are right angles)
EXPONENTS JEOPARDY. Simplifying Powers Evaluating Expressions Problem Solving EXPONENTS.
EXAMPLE FORMULA DEFINITION 1.
8th Grade Math Chapter 9a Review
Lesson Starter Q1. Calculate
Volume of Prisms and Cylinders
Lesson 11-7 Ratios of Areas (page 456)
We are learning to…find the volume of a cylinder
Unit 6: Perimeter and Area
EQUIVALENT FIGURES & SOLIDS.
Algebra 1 Section 2.2.
Must do (8/16): Solve. Leave your answer as an improper fraction. Do NOT use a calculator. Simplify all final answers and circle = Challenge!
Find the area of the base, B, times the height
Literal Equations aS Formulas
Brackets, Factors and Equations
Lesson 11.2 Prisms pp
Chapter 13 Circles and Area
Volume.
Volume of Pyramids and Cones
Surface Areas of Prisms and Cylinders
IMAGINE Find the area of the base, B, times the height
Notes Over 1.2.
Geometry Unit Formula Sheet
SUBSTITUTION At the end of this lesson you should :
Volume and Surface Area
Chapter 1: Foundations of Geometry
Volume of Prisms Objective: Students will be able to use formulas to find the volume of prisms and cylinders.
9.4 – Perimeter, Area, and Circumference
Welcome GCSE Maths.
Presentation transcript:

Chapter two Lesson Eleven: Expressions ©

Expressions –Definition Much of the program’s work is the calculation of expressions. Expressions are sequences of operators, literals and variables that are calculated to a value of some type (number, string, object or other type). ©

Example  {  double r = 9;  // Expression for calculating the area of the circle  double area = Math.PI * r*r;  // Expression for calculating the perimeter of the circle  double perimeter = 2 * Math.PI * r;  Console.WriteLine(r);  Console.WriteLine(area);  Console.WriteLine(perimeter);  Console.ReadLine();  } ©

Using Packets Using Brackets to Make the Code Clear When working with expressions it is important to use brackets whenever there is the slightest doubt about the priorities of the operations. ©

Correct form vs incorrect form example { double qalad = (double)((1 + 2) / 4); Console.WriteLine(qalad); // 0 double sax = (double)(1 + 2) / 4; Console.WriteLine(sax); Console.WriteLine("2 + 3 = " ); // = 23 Console.WriteLine("2 + 3 = " + (2 + 3)); // = 5 Console.ReadLine(); } ©

exercise Qor program ka shaqeynayo: 1) a)perimeter of Triangle p = s1+s2+s3 b) Area of Triangle- formula :Area=1/2(base*hight) 2) Volume of a Cube. Formula: Volume = side1*side2*side3 3) Volume of a cylinder. Formula: volume = Ωr 2 h(r= radios, h=hight) ©