what do we only consider the positive of the quad formula


what do we only consider the positive of the quad formula & (a) Prove that the...
The two roots of the quadratic equation ax2 + bx + c = 0 can be found using the quadratic formula as -b+ v62 – 4ac . -b-v6² – 4ac 1 X1 = - and x2 = 2a 2a When b2 – 4ac < 0 this yields two complex roots - -b V4ac – 62 -b Vac – 6² x1 = = +. . 2a 2a i. and x2 = . za 2al Using the quadratic formula the roots of...
reword m the program into a design document
diregard the m
Write a C++ program that solves a quadratic equation to find its roots. The roots of a quadratic equation ax2 + bx + c = 0 (where a is not zero) are given by the formula -b + b2 - 4ac 2a The value of the discriminant b2 - 4ac determines the nature of roots. If the value of the discriminant is zero, then the equation has a single...
(8) Any depressed quartic can be solved via Ferrari's algorithm. For simplicity, we consider a special case which is easier to deal with by assuming p= 0, Thus we seek to solve f(x) +r r o. The algorithm proceeds as follows (a) Rewrite the equation as b) Add 2r2m m2 to both sides. Here m is a constant we have not yet determined. Show this yields 2 + m)2mm2 (c) Now choose m so that the right hand side is...
please answer this question with python.
Write a program to solve the quadratic equation ax^2 + bx + c = 0 using the standard quadratic formula x = -b plusminus Squareroot b^2 - 4ac/2a or the alternative formula x = 2c/-b Squareroot b^2 - 4ac. Your program should accept values for the coefficients a, b, and c as input and produce the two roots of the equation as output. Your program should detect when the roots are imaginary, but need...
*****THIS IS FOR MY PYTHON CLASS. PLEASE HELP***** { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "#### CS 497 Lab 1\n", "\n", "\n", "### Instructions\n", "0. Rename this file username_lab1. **Not literally, yourName_lab1 (technically correct, the best kind of correct!) but use your BU ID to fill in yourName.** If I was submitting this lab, it would be called dbrennan_lab1.\n", "1. Read all instructions carefully, ask questions if anything is confusing. \n", "2. Fill in the code/text blocks...