Advanced Functions SET 153L. Logical Function An IF function can place different values in a cell based on some condition. =IF (test, value if true, value.

Slides:



Advertisements
Similar presentations
Finding Complex Roots of Quadratics
Advertisements

Algebra I B. MacDonald.  Standard form ax 2 + bx + c  a, b, c are real numbers.
What are you finding when you solve the quadratic formula? Where the graph crosses the x-axis Also known as: Zeros, Roots and X-intercepts.
Complex Number A number consisting of a real and imaginary part. Usually written in the following form (where a and b are real numbers): Example: Solve.
SECTION 2.3 QUADRATIC FUNCTIONS AND THEIR ZEROS QUADRATIC FUNCTIONS AND THEIR ZEROS.
The Quadratic Formula..
Solving Quadratic Equations by Completing the Square
Solving Quadratic Equations Section 1.3
4.8: Quadratic Formula HW: worksheet
Sec 5.6 Quadratic Formula & Discriminant Quadratic Formula (Yes, it’s the one with the song!) If ax 2 + bx + c = 0 and a ≠ 0, then the solutions (roots)
Section 10.5 – Page 506 Objectives Use the quadratic formula to find solutions to quadratic equations. Use the quadratic formula to find the zeros of a.
WARM UP WHAT TO EXPECT FOR THE REST OF THE YEAR 4 May The Discriminant May 29 Chapter Review May 30 Review May 31 Chapter 9 Test June Adding.
6.5 – Solving Equations with Quadratic Techniques.
Using the factoring method, what are the solutions of y = x 2 + 5x + 6.
Goals: To solve quadratic equations by using the Quadratic Formula.
The Quadratic Formula. What does the Quadratic Formula Do ? The Quadratic formula allows you to find the roots of a quadratic equation (if they exist)
4.8 – Use the Quadratic Formula and the Discriminant
7.4 Solving Polynomial Equations Objectives: Solve polynomial equations. Find the real zeros of polynomial functions and state the multiplicity of each.
Quadratics Solving equations Using “Completing the Square”
Equations Reducible to Quadratic
Review the following: if-else One branch if Conditional operators Logical operators Switch statement Conditional expression operator Nested ifs if –else.
Copyright © 2014, 2010, 2007 Pearson Education, Inc. 1 1 Chapter 9 Quadratic Equations and Functions.
WARM UP WHAT TO EXPECT FOR THE REST OF THE YEAR 4 May The Discriminant May 29 Chapter Review May 30 Review May 31 Chapter 9 Test June Adding.
5.3 – Solving Quadratic Equations by Factoring. Ex. 1 Solve y = x 2 + 5x + 6 by factoring.
Solving Quadratic Equations. Review of Solving Quadratic Equations ax 2 +bx +c = 0 When the equation is equal to zero, solve by factoring if you can.
The Quadratic Formula Students will be able to solve quadratic equations by using the quadratic formula.
WHAT IS A “SOLUTION”? Sect P.5 solving Equations.
Aim: Quadratic Formula Course: Adv. Alg. & Trig. Aim: What is the quadratic formula and how do we use it? Do Now: Solve by completing the square: x 2.
CHAPTER 4.
Solving Quadratic Formula using the discriminant.
Solving Quadratic Equations. Factor: x² - 4x - 21 x² -21 a*c = -21 b = -4 x + = -21 = x 3x3x x 3 (GCF) x-7 (x – 7)(x + 3)
Getting Started The objective is to be able to solve any quadratic equation by using the quadratic formula. Quadratic Equation - An equation in x that.
Chapter 4: Polynomial and Rational Functions. 4-2 Quadratic Equations For a quadratic equation in the form ax 2 + bx + c = 0 The quadratic Formula is.
Factoring Polynomials.
Warm-Up Solve each equation by factoring. 1) x x + 36 = 02) 2x 2 + 5x = 12.
Solving Quadratic Equations by Using the Quadratic Formula (9-5) Objective: Solve quadratic equations by using the Quadratic Formula. Use the discriminant.
Warm Up  1.) Write 15x 2 + 6x = 14x in standard form. (ax 2 + bx + c = 0)  2.) Evaluate b 2 – 4ac when a = 3, b = -6, and c = 5.
3.4 Chapter 3 Quadratic Equations. x 2 = 49 Solve the following Quadratic equations: 2x 2 – 8 = 40.
Lesson 6.5: The Quadratic Formula and the Discriminant, pg. 313 Goals: To solve quadratic equations by using the Quadratic Formula. To use the discriminant.
Created by Judy L. McDaniel. Be sure to write a quadratic equation in before using most methods for solving. (not necessarily for the Square Root Prop.)
Chapter 4 Quadratic Equations
SOLVE QUADRATIC EQUATIONS BY USING THE QUADRATIC FORMULA. USE THE DISCRIMINANT TO DETERMINE THE NUMBER AND TYPE OF ROOTS OF A QUADRATIC EQUATION. 5.6 The.
2.2 Solving Quadratic Equations Algebraically Quadratic Equation: Equation written in the form ax 2 + bx + c = 0 ( where a ≠ 0). Zero Product Property:
The Quadratic Formula & Discriminant
Using the Quadratic Formula to Find Solutions
Chapter 4 Quadratic Equations
The Quadratic Formula..
Nature of Roots of a Quadratic Equation
Solving Quadratic Equations
Worksheet Key 9 11/14/2018 8:58 PM Quadratic Formula.
5.6 – The Quadratic Formula And Ch 5 Review
The Quadratic Formula.
Factoring Quadratic Functions if a ≠ 1 (Section 3.5)
9-6 The Quadratic Formula and Discriminant
1B.1- Solving Quadratics:
Solving Quadratic Equations
Warm-Up 5 minutes Solve by completing the square. 1) x2 – 10x + 23 = 0
Objective Solve quadratic equations by graphing.
Review: Simplify.
Warm-Up 5 minutes Factor the following expressions: 2) x2 - 3x
Chapter 6 Section 5.
Solve Quadratics by Graphing ax2 +bx + c
Chapter 3 Quadratic Equations
  Warm Up:.
Applying the Quadratic Formula
The Quadratic Formula..
The Quadratic Formula..
quadratic formula. If ax2 + bx + c = 0 then
Presentation transcript:

Advanced Functions SET 153L

Logical Function An IF function can place different values in a cell based on some condition. =IF (test, value if true, value if false) The value in a cell should be 0 if the value in A3 is negative, and 1 if the value in A3 is zero or positive. =IF(A3<0, 0, 1)

Example Calculate the result if the following expressions were placed in cell C6 =IF(B3>B2, B3, B2) =IF(B3+B2<B4, 3, 6) =IF(B2+B3/2< B4, “NO”, “YES”)

Stacking IF Functions Multiple IF functions can be used in a single command. =IF(A3<0, “NEG”, IF(A3=0, “ZERO”, “POS”))

AND Function Checks whether all arguments are true. =AND(A3<0, A4<0) AND Function returns a true or false Often used with IF functions =IF(AND(A3<0,A4<0), “Both Neg”, “Both Not Neg”)

Example Create a spreadsheet that solves for the real roots of a quadratic equation: ax 2 + bx +c = 0 Beware of a = 0 and b 2 < 4ac

Example Create a spreadsheet that determines whether students pass a course with at least a grade of 65.0

Example Create a spreadsheet that identifies how many students scored in the “B” range (between 80 and 90%).

LOOKUP Function A powerful function that returns a value based on a table located in Excel.

Example Resistors are color coded where each color is worth a value (a, b, c). The resistance isR = (10a + b) x 10 c Create a spreadsheet that uses a lookup table to determine resistance