1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
kozerog [31]
3 years ago
14

048x%20%2B%2040" id="TexFormula1" title=" {x}^{4} - 6 {x}^{3} + 22 {x}^{2} - 48x + 40" alt=" {x}^{4} - 6 {x}^{3} + 22 {x}^{2} - 48x + 40" align="absmiddle" class="latex-formula">
find the zeros​
Mathematics
1 answer:
alexira [117]3 years ago
3 0

Answer:

x = 2, 1 + 3i, 1 − 3i

Step-by-step explanation:

Find the Roots (Zeros)

x^4 − 6x^3 + 22x^2 − 48x + 40

Set x^4 − 6x^3 + 22x^2 − 48x + 40 equal to 0. x^4 − 6x^3 + 22x^2 − 48x + 40 = 0

Solve for x.

Factor the left side of the equation.

Factor x^4 − 6x^3 + 22x^2 − 48x + 40 using the rational roots test.

(x − 2) (x^3 − 4x^2 + 14x − 20) = 0

 Factor x^3 − 4x^2 + 14x − 20 using the rational roots test.

(x − 2) (x − 2) (x2 − 2x + 10) = 0

 Combine like factors.

(x − 2)2 (x^2 − 2x + 10) = 0

If any individual factor on the left side of the equation is equal to 0, the entire expression will be equal to 0.

(x − 2)^2 = 0

x^2 − 2x + 10 = 0

 Set (x − 2)^2 equal to 0 and solve for x.

Set (x − 2)^2 equal to 0.

 (x − 2)^2 = 0

Solve (x − 2)^2 = 0 for x.

x = 2

 Set x^2 − 2x + 10 equal to 0 and solve for x.

Set x^2 − 2x + 10 equal to 0. x^2 − 2x + 10 = 0

Solve x^2 − 2x + 10 = 0 for x.

Use the quadratic formula to find the solutions.

−b ± (√b^2 − 4 (ac) )/2a

Substitute the values a = 1, b = −2, and c = 10 into the quadratic formula and solve for x.

2 ± (√(−2)^2 − 4 ⋅ (1 ⋅ 10))/2 ⋅ 1

Simplify.

Simplify the numerator.

  x =    2 ± 6i/ 2.1

Multiply 2 by 1

 x =  2 ± 6i/2⋅1

 Simplify

  2 ± 6i/2  

   x = 1 ± 3i

The final answer is the combination of both solutions.

x = 1 + 3i, 1 − 3i

The final solution is all the values that make (x − 2)2 (x2 − 2x + 10) = 0 true.

x = 2, 1 + 3i, 1 − 3i

You might be interested in
Ty
AlekseyPX

Answer:

1

1

3

3

Step-by-step explanation: just cuz

8 0
3 years ago
Plz plz help test due soon
Dvinal [7]

Answer:

22

Step-by-step explanation:

8 0
3 years ago
5. The recursive algorithm given below can be used to compute gcd(a, b) where a and b are non-negative integer, not both zero.
s2008m [1.1K]

Implementating the given algorithm in python 3, the greatest common divisors of <em>(</em><em>124</em><em> </em><em>and</em><em> </em><em>244</em><em>)</em><em> </em>and <em>(</em><em>4424</em><em> </em><em>and</em><em> </em><em>2111</em><em>)</em><em> </em>are 4 and 1 respectively.

The program implementation is given below and the output of the sample run is attached.

def gcd(a, b):

<em>#initialize</em><em> </em><em>a</em><em> </em><em>function</em><em> </em><em>named</em><em> </em><em>gcd</em><em> </em><em>which</em><em> </em><em>takes</em><em> </em><em>in</em><em> </em><em>two</em><em> </em><em>parameters</em><em> </em>

if a>b:

<em>#checks</em><em> </em><em>if</em><em> </em><em>a</em><em> </em><em>is</em><em> </em><em>greater</em><em> </em><em>than</em><em> </em><em>b</em>

return gcd (b, a)

<em>#if</em><em> </em><em>true</em><em> </em><em>interchange</em><em> </em><em>the</em><em> </em><em>Parameters</em><em> </em><em>and</em><em> </em><em>Recall</em><em> </em><em>the</em><em> </em><em>function</em><em> </em>

elif a == 0:

return b

elif a == 1:

return 1

elif((a%2 == 0)and(b%2==0)):

<em>#even</em><em> </em><em>numbers</em><em> </em><em>leave</em><em> </em><em>no</em><em> </em><em>remainder</em><em> </em><em>when</em><em> </em><em>divided</em><em> </em><em>by</em><em> </em><em>2</em><em>,</em><em> </em><em>checks</em><em> </em><em>if</em><em> </em><em>a</em><em> </em><em>and</em><em> </em><em>b</em><em> </em><em>are</em><em> </em><em>even</em><em> </em>

return 2 * gcd(a/2, b/2)

elif((a%2 !=0) and (b%2==0)):

<em>#checks</em><em> </em><em>if</em><em> </em><em>a</em><em> </em><em>is</em><em> </em><em>odd</em><em> </em><em>and</em><em> </em><em>B</em><em> </em><em>is</em><em> </em><em>even</em><em> </em>

return gcd(a, b/2)

else :

return gcd(a, b-a)

<em>#since</em><em> </em><em>it's</em><em> </em><em>a</em><em> </em><em>recursive</em><em> </em><em>function</em><em>,</em><em> </em><em>it</em><em> </em><em>recalls</em><em> </em><em>the function</em><em> </em><em>with </em><em>new</em><em> </em><em>parameters</em><em> </em><em>until</em><em> </em><em>a</em><em> </em><em>certain</em><em> </em><em>condition</em><em> </em><em>is</em><em> </em><em>satisfied</em><em> </em>

print(gcd(124, 244))

print()

<em>#leaves</em><em> </em><em>a</em><em> </em><em>space</em><em> </em><em>after</em><em> </em><em>the</em><em> </em><em>first</em><em> </em><em>output</em><em> </em>

print(gcd(4424, 2111))

Learn more :brainly.com/question/25506437

6 0
2 years ago
In the ordered pair (2, 3), what is the x-coordinate? y-coordinate?
blagie [28]

Answer:

2 = x- coordinate

3 = y coordinate

Step-by-step explanation:

REMEMBER: In an ordered pair, the x-coordinate always comes first.

3 0
3 years ago
a third grader has a goal of solving 100 math facts in 5 minutes (or 300 seconds). how many seconds can he spend on each math fa
arsen [322]

Answer:

1 fact per 3 seconds because you divide 300 by 100

5 0
3 years ago
Read 2 more answers
Other questions:
  • John decided to look at new and used cars. John found a used car for $15000. A new car is $25000, so what percent of thi e price
    10·1 answer
  • Ac set of Dishes has a list price of $399 with a 15% discount rate. What is the discount amount?
    6·2 answers
  • Divide r+5/r2+5r-14 by r2+4r-21/r-2
    8·1 answer
  • Witch number is 164,501,423
    9·1 answer
  • In a survey conducted by a website, employers were asked if they had ever sent an employee home because they were dressed inappr
    12·1 answer
  • Determine the quadratic function given the graph​
    14·1 answer
  • PLEASE HELP THIS IS OVERDUE !!!!!!!!!! BRAINLIEST + POINTS!!!!!
    9·2 answers
  • 1. Multiply. (x^2-3x+4)(-2x^2+4x-1) Express your answer in standard form.
    5·1 answer
  • A town in america has 2400 families and 4200 cars. What is the family : cars ratio? ​
    14·2 answers
  • 25:50=4x:8. What is the value of X​
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!