message = 'You need parentheses for chemistry !'

Slides:



Advertisements
Similar presentations
AIM: How do we find slope and y-intercept of a line if it is not in y = mx + b form? Do Now: Do Now: Identify the slope and y-intercept of the following.
Advertisements

DIGITAL COMMUNICATION Packet error detection (CRC) November 2011 A.J. Han Vinck.
7.4 Parentheses in Number Sentences SRB pgs
WARM UP  Use the Distributive Property to rewrite the expression without parentheses. 1. 5(y - 2) 2. -2(x - 6) 3. -1(1 + s) 4. -2(2 + t) 5. -3(x – 4)
Mind the chemistry puns – they might not cause any reaction.
Pavement Markings Quiz Q. 1 & 2. Pavement Markings Quiz Q. 3.
Brandon Feather Begin. 100 pi Go back to beginning Go back to last question.
 Option 1 › Separate entries and hide fields › Hide columns or use separate spreadsheets  Option 2 › Build them up in pieces › Use parentheses if you.
S A B D C T = 0 S gets message from above and sends messages to A, C and D S.
Objective: Find the power of a power. Find the power of a product. Standard Addressed: E: Simplify and expand algebraic expressions using exponential.
Solving Exponential Equations II LG: I can use trial and error to solve exponential equations.
Quiz Name Here Click to start Question 1 Type question here Wrong Answer Right Answer.
7.4 DIVISION PROPERTIES OF EXPONENTS Algebra 7.4.
Power Rule for Exponents The Power Rule for Exponents is used when we raise a power to an exponent. Example 1: Simplify the following.
The last CS lecture you’ll ever need! On Warner Brothers' insistence, we affirm that this 'C' does not stand for 'Chamber' and 'S' does not stand for 'Secrets.'
Nested Control Structures * Conditional Operator (?:) * Preincrement and Postincrement * Predecrement and Postdecrement * Counter-Controlled Repetition.
EECS 110: Lec 3: Data Aleksandar Kuzmanovic Northwestern University
PiPi What is Pi?  Pi stands for 3.14 or 3  You need Pi to figure out the circumference, diameter, and the area of a circle  Pi stands for 3.14 or.
Quiz Use Synthetic Substitution to evaluate: 3.What is the “end behavior” for: 2. Simplify When x = 2 In other words:
EECS 110: Lec 4: Functions and Recursion Aleksandar Kuzmanovic Northwestern University
Asia Map Quiz Name: ______________________
EECS 110: Lec 3: Data Aleksandar Kuzmanovic Northwestern University
Summer AP Chemistry Homework Math Review
Multiplication Properties of Exponents. To multiply two powers that have the same base, you ADD the exponents. OR.
Quiz Name Here Click to start Question 1 Type question here Wrong Answer Right Answer.
Warm Up 1.Evaluate 2. Simplify. A Look Ahead Monday: Review for Test Tuesday: Test #1-Complex number system Wednesday-Friday=Polynomials.
Addition & Subtraction with Decimals. Calculate the cost of: 2 Mathspressos Slice of Pi a) £1.37b) 3.45 c) £2.56d) 2.46.
Quiz 3-1. Use a K-MAP to simplify the following function.
EECS 110: Lec 3: Data Aleksandar Kuzmanovic Northwestern University
CompSci Today’s topics Problem Solving Pseudocode Notes from Zachary Dodds’ CS 5 course at Harvey Mudd Upcoming ä More Python Reading Brookshear,
A public service announcement (PSA) or public service ad, are messages in the public interest disseminated by the media without charge, with the objective.
Please turn to PAGE 34 When you multiply exponents with the same base, ADD the exponents. The base stays the same.
Order of Operation Must follow special set of rules to solve
Pointers & Arrays.
Aleksandar Kuzmanovic Northwestern University
Do Now Simplify  3 – (3 – 1) ÷ (3 + 2)
Preview Warm Up California Standards Lesson Presentation.
Goal: Simplify expressions with like terms
My 6+ Unit 6 Vocabulary By: Claire S..
Make Your Own Quiz.

2-6 Exponents Course 3 Warm Up Problem of the Day Lesson Presentation.
آشنايی با اصول و پايه های يک آزمايش
Holy Cross Chemistry New Students Day 2017.
إعداد المشرفة التربوية نجلاء الجارد
انواع المخاليط (التدريس الابداعي )
PSA.
Data types Numeric types Sequence types float int bool list str
Warm Up Find the product • 5 • 5 • • 3 • 3 27
Art of Reading Smoke
Quiz – you may use your mindmap from last class!
Fishbone Diagram Example
AP Chemistry Unit 3 – Stoichiometry
Unit 10 Acid–Base Chemistry
EECS 110: Lec 4: Functions and Recursion
Multiply the total number of atoms inside the parentheses by the
AP Chemistry Unit 6 – Chemical Bonding
Exponents, Parentheses, and the Order of Operations
Nate Brunelle Today: Lists
Property of EFT and Mindfulness Centre
Тархи ба оюун \Brain and Mind\
Pointers & Arrays.
PSA.
Arithmetic Operators Topics Arithmetic Operators Operator Precedence
Quiz – Lives of Stars.
Preview Warm Up California Standards Lesson Presentation.
Multiply the total number of atoms inside the parentheses by the
Tissue Formative Quiz.
Types of Errors And Error Analysis.
1. Find and simplify a ratio 2. Use a ratio to work out amounts
Presentation transcript:

message = 'You need parentheses for chemistry !' "Quiz" Raising and razing lists pi = [3,1,4,1,5,9] Q = [ 'pi', "isn't", [4,2] ] message = 'You need parentheses for chemistry !' Part 1 Part 2 len(pi) Q[0] What are len(Q) Q[0:1] len(Q[1]) What are Q[0][1] Q[1][0] What slice of pi is [3,1,4] What slice of pi is [3,4,5] What is message[9:15] What are pi[0] * (pi[1] + pi[2]) and pi[0] * (pi[1:2] + pi[2:3]) What is message[::5] Extra! Mind Muddlers What is pi[pi[2]]? How many nested pi's before pi[…pi[0]…] produces an error?