MATH By: Mr. McTavish. BASIC OPERATIONS  Addition: +  Subtraction: -  Multiplication: *  Division: /  Modulus (division remainder): %

Slides:



Advertisements
Similar presentations
Mod arithmetic.
Advertisements

EXPONENTS ORDER OF OPERATIONS MULTIPLYING / DIVIDING POWER OF A POWER POWER OF A PRODUCT POWER OF A QUOTIENT NEGATIVE EXPONENTS.
9-Aug-15Created by Mr. Lafferty Maths Dept. Add / Subtract Integers Double Negatives Integers Multiply +ve / -ve Integers Divide.
The Answer is RIGHT.
Divisibility Rules and Mental Math
Created by Mr. Lafferty Maths Dept.
Bell Ringer = – 5 = = ÷ -2 = =6. -7 – (-7) = After you have completed the bell ringer, take out your homework!
ORDER OF OPERATIONS Back to the Future. Its all Review Order of operations with Integers works the same way for whole numbers, integers, fractions decimals.
Operators in Python. Arithmetic operators Some operators in Python will look familiar (+, -, *, /) Others are new to you (%, //, **) All of these do work.
Order of Operations Integers. Order of Operations with Integers Be careful when doing the operations to follow the rules of each operation and their sign.
Integers 7th Grade Math.
Variables and Expressions, continued CMSC 201. Expressions Anything on the right hand side of the equals is an expression. Expressions can be anything.
Divisibility Rules and Finding Factors
1 Numbers & Basic Algebra – Math 103 Math, Statistics & Physics.
C ONTINUING C++ Precedence Rules, Numeric Types, More Operator Symbols, and Keyboard Input Prompts.
Chapter 8 – Exponents and Exponential Functions 8.1/8.3 – Multiplication and Division Properties of Exponents.
Laws of Exponents. Vocabulary Factor:an integer that divides into another integer with no remainder. Factor:an integer that divides into another integer.
PROPERTIES OF EXPONENTS
1-2 Order of Operations and Evaluating Expressions.
Arithmetic Expressions Addition (+) Subtraction (-) Multiplication (*) Division (/) –Integer –Real Number Mod Operator (%) Same as regular Depends on the.
Evaluating Integer Expressions Friday, December 25, 2015.
Primary Maths Calculation Strategies. Addition
Division. Just as multiplication can be expressed as a series of additions, division can be seen as a series of subtractions. 21 ÷ 7 asks how many times.
Doing math In java.
Order of Operations with Integers
ORDER OF OPERATIONS. What is the correct method for solving numerical problems?
Addition Multiplication Subtraction Division. 1.If the signs are the same, add the numbers and keep the same sign = = If the.
Solving 1-Step Equations 2 An Equation is Like a Balance.
By: Tameicka James Addition Subtraction Division Multiplication
6.1 Properties of Exponents Use properties of exponents Use negative and zero as an exponent EQ: What are the general rules involving properties of exponents?
Dr. Sajib Datta Jan 21,  Declare a variable ◦ int height; [note that no value is still assigned]  Assign a variable a value ◦ height =
PERFORMING CALCULATIONS IN SCIENTIFIC NOTATION ADDITION AND SUBTRACTION.
Laws of Exponents Prepared by: Ruby Rose Concepcion III- B Math.
Intro to Math… Lesson 1. 4 Fundamental Operations Of Math Example: adding + subtracting - multiplying x dividing ÷
P= Parentheses E= Exponents M= Multiplication D= Division A= Addition S= Subtraction.
Interesting Integers – Part Dos
Subtraction Addition Multiplication Fractions Division 1pt 1 pt 1 pt
JE’PARDY! MATH
Addition/ Subtraction
Math & Exponents.
Order of Operations.
Order of Operations ÷ + - X.
REALLY BIG & REALLY small Numbers
Order of Operations Operations are symbols in math.
Order of Operations in Math
Algebra Year 10, 2016 Day 1.
1 Step Equation Practice + - x ÷
Algebra Algebra.
Accentuate the Negative
Review # 2 Math 8.
Modular Arithmetic and Change of Base
Short Division by Mary S. Roland.
Determining Factors and Multiples
Order of Operations Using Integers
Advanced Math Topics Mrs. Mongold
Math Created by Educational Technology Network
Short Division.
Created by Mr. Lafferty Maths Dept.
Number Lines.
EXPONENTS… RULES?!?! X ? X 5 2 =.
divide dividend divisor inverse operations quotient
Multiply and divide Expressions
Math-7 NOTES What are Two-Step Equations??
Apply Exponent Properties Involving Quotients
DIRECTED NUMBERS.
Math-7 NOTES 1) 3x = 15 2) 4x = 16 Multiplication equations:
What do you think it means? Before:
Multiplication and Division of Integers
Divide two Integers.
Section 1.3 Prime Factorization
Presentation transcript:

MATH By: Mr. McTavish

BASIC OPERATIONS  Addition: +  Subtraction: -  Multiplication: *  Division: /  Modulus (division remainder): %

INTEGER ADDITION  Int32 intOp1 = 3;  Int32 intOp2 = 4;  Console.WriteLine("Integer Addition: "  + (intOp1 + intOp2).ToString());

DOUBLE ADDITION  Double dblOp1 = 3.1;  Double dblOp2 = 4.2;  Console.WriteLine("Double Addition: "  + (dblOp1 + dblOp2).ToString());

INTEGER MULTIPLICATION  Int32 intOp1 = 3;  Int32 intOp2 = 4;  Console.WriteLine("Integer Multiplication: "  + (intOp1 * intOp2).ToString());

DOUBLE MULTIPLICATION  Double dblOp1 = 3.1;  Double dblOp2 = 4.2;  Console.WriteLine("Double Multiplication: "  + (dblOp1 * dblOp2).ToString());

INTEGER DIVISION  Int32 intOp1 = 3;  Int32 intOp2 = 4;  Console.WriteLine("Integer Multiplication: "  + (intOp1 / intOp2).ToString());

DOUBLE DIVISION  Double dblOp1 = 3.1;  Double dblOp2 = 4.2;  Console.WriteLine("Double Multiplication: "  + (dblOp1 / dblOp2).ToString());

INTEGER DIVISION  Int32 intOp1 = 3;  Int32 intOp2 = 4;  Console.WriteLine("Integer Multiplication: "  + (intOp1 / intOp2).ToString());

INTEGER DIVIDED BY DOUBLE  Int32 intOp1 = 3;  Double dblOp2 = 4.2;  Console.WriteLine("Int Divided by Double: "  + (intOp1 / dblOp2).ToString());

INTEGER MODULUS  Int32 intOp1 = 3;  Int32 intOp2 = 4;  Console.WriteLine("Integer Modulus: "  + (intOp1 % intOp2).ToString());

DOUBLE MODULUS  Double dblOp1 = 3.1;  Double dblOp2 = 4.2;  Console.WriteLine("Double Modulus: "  + (dblOp1 % dblOp2).ToString());

EXPONENTS  Console.WriteLine("Exponents: "  + (Math.Pow(dblOp1,dblOp2).ToString()));

SINE  Console.WriteLine("Sin (Warning: Radians!): "  + (Math.Sin(dblOp1).ToString())); Console.WriteLine("Sin (Warning: Radians!): "  + (Math.Sin(dblOp1).ToString()));

CONCATENATION  Console.WriteLine(String.Concat("This ","will ","look ","like ","a ","sentence.\n\t","Cool!"));