Answer:
x = -b +or- the square root of (b^2-4ac) ALL / 2a
sing to "pop goes the weasel" lol
Answer:
x=25 or x=0
Step-by-step explanation:
4x(x−25)=0
Step 1: Simplify both sides of the equation.
4x2−100x=0
For this equation: a=4, b=-100, c=0
4x2+−100x+0=0
Step 2: Use quadratic formula with a=4, b=-100, c=0.
x=−b±√b2−4ac over 2a
x=−(−100)±√(−100)2−4(4)(0) over 2(4)
x=100±√10000 over 8
x=25 or x=0
Answer:
Y = 90
X = 52
Step-by-step explanation:
Y is on a straight line. The sum of the angles on a straight line is 180.
The only other angle (that is marked) on this straight line, is a 90 degree one. So, <y + 90 = 180.
<y = 90.
Now <x + 38 = 90
so, x = 52
Answer:
$109 and 35%
Step-by-step explanation:
49.05 is the sale price and the discount is 55%. What’s the original price?
price/ 1- discount
49.05/ 1 - 0.55
49.05/ 0.45
109
for the other part
to find the discount subtract final price from original price
94 - 61.10 = 32.9
Which would be 35% in percent form.
Assuming we need to find i such that
1 ≤ i ≤ n and t[i]=i.
If we need to find only the first occurrence, we can do:
for i:1 to n {
if t[i]=i then return(i)
}
If exhaustive search is required, then put the results (values of i) in an array or a linked list, return the number of values found, and the array (or linked list).