Ways of Thinking About Problems

Slides:



Advertisements
Similar presentations
Ch 2 Sec 4: Slide #1 Columbus State Community College Chapter 2 Section 4 Solving Equations Using Division.
Advertisements

Given Connections Solution
3x – 5y = 11 x = 3y + 1 Do Now. Homework Solutions 2)2x – 2y = – 6 y = – 2x 2x – 2(– 2x) = – 6 2x + 4x = – 6 6x = – 6 x = – 1y = – 2x y = – 2(– 1) y =
Elimination Day 2. When the two equations don’t have an opposite, what do you have to do? 1.
EXAMPLE 3 Use synthetic division Divide f (x)= 2x 3 + x 2 – 8x + 5 by x + 3 using synthetic division. – – 8 5 – 6 15 – 21 2 – 5 7 – 16 2x 3 + x 2.
Solving Systems of Equations: The Elimination Method Solving Systems of Equations: The Elimination Method Solving Systems of Equations: The Elimination.
Information Item Change to Policies Governing All Graduate Programs.
SystemsOfInequalities. 7-1 Solving Systems by Graphing What is a system of linear equations? “SOLUTION” No solution Infinitely Many Solutions Page 342.
Lesson 1.  Example 1. Use either elimination or the substitution method to solve each system of equations.  3x -2y = 7 & 2x +5y = 9  A. Using substitution.
1 Project 5: Leap Years. 222 Leap Years Write a program that reads an integer value from the user representing a year and determines if the year is a.
Def: A matrix A in reduced-row-echelon form if 1)A is row-echelon form 2)All leading entries = 1 3)A column containing a leading entry 1 has 0’s everywhere.
Finding the Greatest Common Factor Looking Inside the Number Values.
Objective - To find the Least Common Multiple (LCM) of numerical and variable expressions and use it to compare and order fractions. Smallest number that.
06 GCF Greatest Common Factor GCF Greatest means _________ Biggest, Largest, Highest Common means ________ Share, have the same, be alike A Factor is _________.
Factors, Prime Numbers & Composite Numbers
Magicians.
Divide by x - 1 Synthetic Division: a much faster way!
Warm UP: Solve the following systems of equations:
Multiplying and Dividing Fractions
Factors and Primes.
Solving Systems of Equations by Elimination2
Representing Pattern Relationships
Pre-Algebra Ratios.
Regulatory Synergies in Device Innovation
Divisibility Rules.
Review Game In your groups of 3 you will work out the problems together and then write your answer on the whiteboard. When asked you will raise your.
Expedited Organ Placement Concept Paper
BACK SOLUTION:
Divide and Conquer – and an Example QuickSort
Elements in Eliminated Jacobian = 133,515
Elements in Eliminated Jacobian = 133,515
Prime Factorization: The prime factorization of a number is the product of all of the prime numbers that equals the number.
Solving Division Equations.
Multiplication and Division by Powers of Ten
קורס פיננסי – מושגים פיננסיים / כלכליים
Unit 3: Rational Number Conversions
Naïve Gauss Elimination Pitfalls
Implementing the Second Step Program
Inconsistent and Dependent Systems and Their Applications
TYPEWRITER 10.1 Systems of Equations
Intro to Nested Looping
Derivatives.
Perimeter and area of Combined shapes
How to Factor (No Clicking Please).
8-Step Roadmap for Change
Python: Algorithms Damian Gordon.
Prime Factorization.
Modeling Multiplication Equations
FRONT No Solutions Infinite Solutions 1 solution (x, y)
Intro to Nested Looping
Section 4.1 Divisibility and Factors
Leap Years.
Solving Special Cases.
Supplemental Figure 1A Pt Pt Pre-treatment
Spring 2013 Research Update
Warm Up: Put on the back of guided notes
Divisibility Rules.
Solar Equatorial Year = Days
11.5 Dividing Polynomials.
Systems of Equations Solve by Graphing.
Functions and Relations
POWER CHALLENGES Several Ways To Solve 7 CHALLENGES.
Solving Systems of Equations by Elimination Part 2
Factors.
Problem solving.
Nested if’s Multiple Alternatives
A function f is continuous at the point x = a if the following are true: f(a) a.
Naïve Gauss Elimination Pitfalls
Notes Over 6.1 Graphing a Linear Inequality Graph the inequality.
Indicator 16 System of Equations.
Presentation transcript:

Ways of Thinking About Problems Leap Year – After and including 1582, Evenly divisible by 4, except evenly divisible by 100, except evenly divisible by 400. Not leap year – Before 1582, Not evenly divisible by 4 and evenly divisible by 100 and not 400. All years Pre 1582 Post 1582 NOT % 4 == 0 % 100 == 0 % 400 == 0 IS NOT

All years Pre 1582 = and post 1582 NOT % 4 == 0 % 100 == 0 % 400 == 0 IS NOT if (year < 1582) “is not a leap year” else if (year % 400 == 0) “ is a leap year” else if (year % 100 == 0) “ is not a leap year” else if (year % 4 == 0) “ is a leap year else

All years Pre 1582 = and post 1582 NOT % 4 == 0 % 100 == 0 % 400 == 0 IS NOT if (year < 1582) “is not a leap year” else if (year % 4 != 0) else if (year % 400 == 0) “ is a leap year” else if (year % 100 == 0) “ is not a leap year” else “ is a leap year “ This variant seeks to eliminate most of the cases before we get down to the more specific leap year candidate cases.

There are many other solutions