Operations Python code.

Slides:



Advertisements
Similar presentations
Fractions Review.
Advertisements

Simplifying Fractions Multiplying & dividing Fractions.
Addition & Subtraction Add Plus More than Subtract Difference Take away Altogether Minus Less than +-
Factors Terminology: 3  4 =12
© 2007 by S - Squared, Inc. All Rights Reserved.
Mixed and Improper Fractions Math 6 th Grade Finley.
 To add numbers in scientific notation: 1) Add the constants 2) Keep the exponent the same  Example: (2.1 x 10 5 ) + (3.2 x 10 5 ) = ( ) x 10.
Objective How to solve Integer problems
Mixed Numbers and Improper Fractions.
Operations with Fractions REVIEW CONCEPTS. Fractions A number in the form Numerator Denominator Or N D.
Adding, Subtracting, Multiplying, and Dividing Real Numbers.
PROPERTIES OF EXPONENTS

Partial Quotient Method In this division algorithm the children record on the right side of the problem. The first thing they do is divide. They ask themselves.
FRACTIONS LESSON 4. TERMIOLOGY ► NUMERATOR – Top digit of a fraction ► DENOMINATOR – Bottom digit of a fraction ► EQUIVALENT FRACTIONS - are fractions.
Scientific notation. What is scientific notation?  Numbers are written in the form M × 10 ^n, Where the factor M is a number greater than or equal to.
5 2,389 Long Division x 4 Step 1: Does 5 go into 2? No. So mark it.
One step equations Add Subtract Multiply Divide  When we solve an equation, our goal is to isolate our variable by using our inverse operations.  What.
I’m Thinking of a Number
Addition Multiplication Subtraction Division. 1.If the signs are the same, add the numbers and keep the same sign = = If the.
One Step Equations and Inequalities Review
Two-step Inequalities SOL 8.15 cont.. What is an inequality? An inequality is a mathematical sentence that compares expressions using: < less than > greater.
Goal: use division to generate mixed numbers and improper fractions.
Solving 2 step equations. Two step equations have addition or subtraction and multiply or divide 3x + 1 = 10 3x + 1 = 10 4y + 2 = 10 4y + 2 = 10 2b +
Simultaneous Equations with Different Numbers in the Middles 4x + 3y = 15 5x – 2y = 13 Different Numbers.
Write, Interpret and Use Mathematical Expression and Equations.
Fractions V Mixed Numbers & Improper Factions. Mixed Number A mixed number has a part that is a whole number and a part that is a fraction. A mixed number.
3x + 2 6x3 - 5x2 – 12x – 4 2x2 – 3x – 2 6x3 + 4x2 -9x2 – 12x -9x2 – 6x
Fractions A number in the form Numerator Denominator Or N D.
Adding, Subtracting, Multiplying, and Dividing Integers
DIVIDING INTEGERS The University of Texas at Dallas.
Division with Remainders
Quantitative Measurements
ONE STEP EQUATIONS.
ONE STEP EQUATIONS.
Solving Inequalities.
Fractions Review.
Fractions Review.
Fractions Review.
Fractions Review.
Learning Outcomes –Lesson 4
Addition & Subtraction
EQ: How do I solve an equation in one variable?
G7 programing language Teacher / Shamsa Hassan Alhassouni.
One step equation with Multiplication and Division
SEQUENCES WHAT IS A SEQUENCE?
To get y, multiply x by 3 then add 2 To get y, multiply x by negative ½ then add 2 To get y, multiply x by 2 then subtract 3 To get y, multiply x.
Divide the number in C by 10.
Math Journal Notes Unit 5.
1.2 Adding And Subtracting Complex Numbers
Fractions Review.
1.2 Adding And Subtracting Complex Numbers
Fractions Review.
Subtract the same value on each side
Mathematical Symbols 09/04/2019 R Nicks.
Fractions Review.
Fractions Review.
Fractions Review.
Understanding Code Workshop 2.
Fractions Review.
Add Subtract Multiply Divide
Solving Inequalities.
ONE STEP EQUATIONS.
Fractions Review InfoTech Math October 12, 2017
Simultaneous Equations with Different Numbers in the Middles
Order of Operations  + - X.
Add Subtract Multiply Divide
ONE STEP EQUATIONS.
COMPUTING.
Number Machine.
Presentation transcript:

Operations Python code

Not those type of operations.

Mathematical operators = set equal to == ‘is equal to’ != NOT equal to > and < greater than & less than >= and <= greater than or equal to / less than or equal to * / Multiply & divide + - add & subtract % Modulus – gives remainder to a division problem

We can practice in python shell Try these on your own using Python’s shell (not the ‘new window’) 12 * 2 35.8 * 12.2 12 / 2 12%5 100 > 50 50 == 50 100 <= 12

Revise & turn in interview program Take the rubric and make sure our program is completed correctly