CSI 101 Elements of Computing Spring 2009 Lecture #1 – From Math to Computers Wednesday, January 21, 2009.

Slides:



Advertisements
Similar presentations
Order of Operations PEMDAS
Advertisements

PEMDAS Order of operations.
INF1060 spreadsheets. Making formulas Like your calculator, you can use Excel to perform many mathematical functions as well as organize data In this.
Objective: Students will be able to write and solve two- step equations with one variable!
IS means = sign Writing Equations: “2 more than twice a number is 5”
Solving problems ONE STEP at a time
Pemdas P-parenthesis E-exponents M-multiplication D-division
1-2 The Order of Operations Objective: Use the order of operations and grouping symbols.
Solve an equation with variables on both sides
Chapter 3 Math Vocabulary
Math is a language, learn the words!
Warm-up Find the domain and range from these 3 equations.
By: Kenzie Ashekian & Edgar Chant. What is a linear equation? A linear equation is an algebraic equation where the goal is to get the variable by itself,
Section 3.4 Solving Equations with Variables on Both Sides Mr. Beltz & Mr. Sparks.
1-1 Expressions and Formulas
ORDER OF OPERATIONS x 2 Evaluate the following arithmetic expression: x 2 Each student interpreted the problem differently, resulting in.
Operations The verbs of mathematics.. Subtraction Same as: adding a negative number = 4 + (-3)
Welcome to Math 6 ORDER OF OPERATIONS. OBJECTIVE: Each student will understand and use the order of operations.
Chapter 1: The Language of Algebra You will learn: To use variables to represent unknown quantities Words to Learn: Variables: letters used to ______________.
CONFIDENTIAL1 Warm-up: 1.) = 2.) = 3.)9 - 6 ÷ 3 = 4.)4 + 5 x 8 = 5.) = Today we will learn How to Evaluate Expressions.
MM150 Unit 3 Seminar Agenda Seminar Topics Order of Operations Linear Equations in One Variable Formulas Applications of Linear Equations.
Assignment statement: Assigns a value to a variable Variable must appear on the left side, value on the right side of the assignment operator Right side.
Solving Equations. The purpose of this tutorial is to help you solve equations. As you move through the tutorial the examples will become more complex.
Order of Operations Section 1.3. Agenda Warm-up Exercise Warm-up Exercise –Practice Listening Skills Learning Session on “Order of Operations” Learning.
2.1 Solving One Step Equations: Equivalent Equations: equations that have the same solutions. Isolate: Get a variable with a coefficient of 1 alone on.
Functions, equations and algebra Basic Arithmetic Notation and operations.
 Parentheses first.  In equations, you solve problems in parentheses before anything else.
PS Algebra I.  when simplifying an expression, this is the procedure you must use: 1) simplify any grouping symbols found within the expression (grouping.
By: Tameicka James Addition Subtraction Division Multiplication
Spreadsheet Formulas Cell Data - is classified according to its intended purpose.
Solving Logarithmic Functions Math 3 Standard MM3A2.
Solving Equations in Physics What??? This is physics not math Relax. Don’t freak out, its as easy as 1, 2, 3.
BODMAS.
STAYCLE DUPLICHAN EXCEL Formulas October 13, 2011.
Order of Operations PEMDAS DON’T STRESS. Numerical Expression : A mathematical phrase that includes numerals and operational symbols. It does not have.
Math 094 Section 1.3 Exponents, Order of Operations, and Variable Expressions.
Order of Operations Jan Sands Butterfly Science & Math 2008.
The Order of Operations The Order of Operations Objective: Use the order of operations and grouping symbols.
Order of Operations ~ Use Order of Operations.
Properties of Arithmetic
< > < < < < < > Solving Inequalities
Cornell Notes for Math Process Problem Use distributive property
Solving Two- Step Equations
Assignment statement:
Order of operations Goals: Review the order of operations
Solving Two-Step Equations
Arithmetic, Exponents, Equations and Inequalities
Order of Operations in Math
A standard way to simplify mathematical expressions and equations.
Solving Two- Step Equations
1 Step Equation Practice + - x ÷
BODMAS.
43 Order of Operations  ( ) + - X.
Solving Two Step Equations
< > < < Solving Inequalities < < < >.
< > < < < < < > Solving Inequalities
Order of Operations.
Do Now 1) t + 3 = – 2 2) 18 – 4v = 42.
CSI 101 Elements of Computing Spring 2009
Math Created by Educational Technology Network
Sec 1.1 – Order of Operations
Order of Operations PEMDAS.
< > < < Solving Inequalities < < < >.
Objective The student will be able to:
Solving One Step Equations
43 Order of Operations  ( ) + - X.
Exercise Solve and check x – 3 = 5. x = 8 8 – 3 = 5.
< > < < < < < > Solving Inequalities
What do you think it means? Before:
So which is the correct answer?
Presentation transcript:

CSI 101 Elements of Computing Spring 2009 Lecture #1 – From Math to Computers Wednesday, January 21, 2009

Similarities to Math  Use of variables  Most of what you detail in programs are general  Variables represent values  Based on data  All functions and operations work with variables and data values

Level of Programming  Detailed, specific steps  Get down to level of one data value interacting with another  Think about how you are getting the data  Consider what you are doing with the data

Example  Find the largest of three numbers  Can only use less than or greater than  That comparison checks only two numbers  Thus, compare two of them, then compare the largest to the third

Math in Programs  Most programming languages use same mathematical operators as traditional math  Arithmetic : +, -, /  Multiplication is * instead of x  Equate: =  Comparison:, =  No symbol for root  Exponentiation uses different symbols

Arithmetic Example  Always remember that, in computers, the answer to a calculation is ALWAYS on the left side of the equation  It’s the variable you are placing the value into  In traditional math, it doesn’t matter which side Ans = A + 3*B

Order of Operations  Computers use the same order of operations as math 1.Parentheses 2.Exponentiation 3.Multiplication and Division 4.Addition and Subtraction

PEMDAS Example Ans = A + 3*B / 4 does not have the same answer as Ans = (A + 3*B)/4