Lesson 5 Exponentiation,Order of Operations and Error Handling.

Slides:



Advertisements
Similar presentations
LESSON 1.4 EVALUATING EXPRESSIONS
Advertisements

Objective A: To Evaluate Exponential Expressions
1-1 Variables and Expressions
Microsoft Excel Computers Week 4.
Review A prime number is a whole number with only two factors, itself and 1. Ex. 2,3,5,7,11,13,17,19,23,29,31,... A composite number is a whole number.
Alford Academy Business Education and Computing1 Advanced Higher Computing Based on Heriot-Watt University Scholar Materials File Handling.
Homework Read Pages 327, , , , , Page 335: 17, 18, 57, 93 – 97 Page 344: 7, 12, 14, 39, 40, 43 Page 353: 5, 6, 10,
ICS 103 Lab 2-Arithmetic Expressions. Lab Objectives Learn different arithmetic operators Learn different arithmetic operators Learn how to use arithmetic.
(BASIC MATH) QUIZ. START!! Click Here!! 1. What is Addition? a. The act or process of adding numbers. The act or process of adding numbers. b. The act.
Addition & Subtraction Add Plus More than Subtract Difference Take away Altogether Minus Less than +-
OF COURSE I DON'T LOOK BUSY... I DID IT RIGHT THE FIRST TIME
Excel 2010 Formulas A formula is an equation that performs a calculation. Like a calculator, Excel can execute formulas that add, subtract, multiply, and.
Using the Order of Operations Mathematicians have established an order of operations to evaluate an expression involving more than one operation. Finally,
Microsoft Visual Basic 2005 BASICS Lesson 4 Mathematical Operators.
Review for Mid-term! October 26, Review Homework Worksheet True or False Operators are symbols that perform specific operations in Visual Basic.
Addition, Subtraction, Multiplication, and Division of Integers
Visual Basic.NET BASICS Lesson 4 Mathematical Operators.
Using the Order of Operations Mathematicians have established an order of operations to evaluate an expression involving more than one operation. Finally,
Bell Ringer = – 5 = = ÷ -2 = =6. -7 – (-7) = After you have completed the bell ringer, take out your homework!
ORDER OF OPERATIONS x 2 Evaluate the following arithmetic expression: x 2 Each student interpreted the problem differently, resulting in.
Intro to Excel - Session 2.11 Tutorial 2 - Session 2.1 Creating a Worksheet.
Visual Basic.NET BASICS Lesson 5 Exponentiation, Order of Operations, and Error Handling.
Introduction to Programming with RAPTOR
Mr. Rizzo Grade 9 Mathematics Click here to go to the Menu.
Chapter 8 – Exponents and Exponential Functions 8.1/8.3 – Multiplication and Division Properties of Exponents.
Copyright © Lynda Greene Aguirre Exponential Form is used when you want to multiply the same number by itself several times. 5 is the base 4 is.
4-1 Exponents Repeated Multiplication or Division Using Bases and Exponents.
Operations with Matrices: Multiplication
Aim: How to write in Scientific Notation and Count Significant Figures DO NOW: 1. WHAT DOES 10 5 MEAN? 2. WHAT IS THE VALUE OF USING YOUR CALCULATOR,
Lesson 4 Mathematical Operators! October 6, 2009.
Order of Operations Module I, Lesson 1 Online Algebra
Delphi first steps. How to create a project Open – File – New – VCL Forms Application.
110 E-1 Variables, Constants and Calculations(2) Chapter 3: Operations on variables, scope of a variable, formatting data Doing Arithmetic.
Python Lesson 1 1. Starter Create the following Excel spreadsheet and complete the calculations using formulae: 2 Add A1 and B1 A2 minus B2 A3 times B3.
Addition Multiplication Subtraction Division. 1.If the signs are the same, add the numbers and keep the same sign = = If the.
By: Tameicka James Addition Subtraction Division Multiplication
More Visual Basic!. Creating a Standalone Program A standalone program will allow you to make a program file that can be run like other Windows programs,
Adding Code to the Option Button. Open VB 1.Double click the Calculate button and select General from the Object list box. 2.Add the following code to.
STAYCLE DUPLICHAN EXCEL Formulas October 13, 2011.
What is 10-5? Correct! Click on the picture below to answer another question!
 =   –  + ++= = = = = CALCULATING FEDERAL INCOME TAX Lesson 25-3, page 647.
Chapter 3 Exponents, Factors, and Fractions. 3-1 to 3-2 Exponents, Orders of Operations, and Scientific Notation What You’ll Learn  To write numbers.
P= Parentheses E= Exponents M= Multiplication D= Division A= Addition S= Subtraction.
Lesson 4 Mathematical Operators! September 29, 2008 (Pages 62-65)
Lesson 45: Exponents, The Rules
Interesting Integers – Part Dos
Order of Operation Must follow special set of rules to solve
Exponents and Order of Operations
Diversey Rebates End User Manual.
OF COURSE I DON'T LOOK BUSY... I DID IT RIGHT THE FIRST TIME
Multiplying and Dividing Integers
Solving Two-Step Equations
Order of Operations in Math
Lesson 8.0 Identifying Basic Shapes Students will be able to identify basic shapes and review order of operations as evidenced by the shape game and review.
1 Step Equation Practice + - x ÷
Multiplication and integers
FOUR RULES OF WHOLE NUMBERS
HOW TO CREATE A CLASS Steps:
Terms used in Multiplication
Warm Up Aliens from another planet use the following symbols for addition and multiplication: Use the codes below to figure out which symbol means add,
Microsoft Visual Basic 2005 BASICS
Using the Order of Operations
Lesson 3: Complex Formulas
Learning Intention I will learn about concatenation and arithmetic operators.
Number Lines.
Using the Order of Operations
Basic Lessons 5 & 6 Mr. Kalmes.
Algebra 1 Section 1.8.
Significant Digits Calculations.
Significant Digits Calculations.
Presentation transcript:

Lesson 5 Exponentiation,Order of Operations and Error Handling

Exponentiation Is the process of raising a number to a power. The symbol that represents exponentiation is the caret ^ For example: 2 raise to the 16 th power is written as: 2 ^ 16

Order of Operations Rules: 1. Operations with parentheses are calcuated first. 2.Exponentiation. 3.Unary plus and minus. 4.Multiplication and division/integer division, MOD. 5.Addition and subtraction.

What is the result of the calcuation below? 2 * * 3 4 / * 2 4 / (2 + 6) * 2 4 * – * 3 – * 3 – 9 / 3 12 / * 2 – 5 ( 5 + 7) / * 2 – / 2 – 16 / * 6

Answers are:

Start VB! Open Interest file from Lesson 5.

Double click the calculate button and enter the following code. 'Calculate future value lblTotal.Caption = Fix(Val(txtDeposit.Text) * _ (1 + (Val(txtInterest.Text) / 100)) ^ Val(txtYears.Text)) 'Repeat the number of years saved in the output lblYearsSaved.Caption = Val(txtYears.Text)

Run your program and fix your bugs! Enter the following data into the form Amount Deposited 8 Interest Rate of % 15 Number of years saved Save your program!

Homework! Read pages 82 to 94. Answer the True/False questions on page 96.