Answer:


Step-by-step explanation:
<u>Second-Degree Equation</u>
The second-degree equation or quadratic equation has the general form

where a is non-zero.
There are many methods to solve the equation, one of the most-used is by using the solver formula:

The equation of the question has the values: a=1, b=2, c=4, thus the values of x are


Since the square root has a negative argument, both solutions for x are imaginary or complex. Simplifying the radical

The solutions are


Answer:
0.60 or 0.6
Step-by-step explanation:
Divide three by five :)
3÷5= 0.6
Answer:
Monomial Binominal Trimoninal
Degree 1: -9x x + 6
Degree 2: -4

Degree 3: 4
5 - 2

Step-by-step explanation:
I do not know how to explain how I got to this answer, but here is the answer.
Answer:
648
Step-by-step explanation:
Running this in Python, with the code as follows,
import math
cur_numbers = [0] * 3
num = 0
for i in range(100, 1000):
cur_numbers[2] = i % 10
i = math.floor(i/10)
cur_numbers[1] = i % 10
i = math.floor(i/10)
cur_numbers[0] = i % 10
if(len(set(cur_numbers)) == 3):
num += 1
print(cur_numbers)
print(num), we get 648 as our answer.
Another way to solve this is as follows:
There are 9 possibilities for the hundreds digit (1-9). Then, there are 10 possibilities for the tens digit, but we subtract 1 because it can't be the 1 same digit as the hundreds digit. For the ones digit, there are 10 possibilities, but we subtract 1 because it can't be the same as the hundreds digit and another 1 because it can't be the same as the tens digit. Multiplying these out, we have
9 possibilities for the hundreds digit x 9 possibilities for the tens digit x 8 possibilities for the ones digit = 648