For
the first question; we have a problem dealing with translations.
Our goal is to translate
the word problem into an algebraic one. So our numbers are
60, 2, and 5. Our variable, or the letter holding the unknown
number's place
value, is
N. <span>
</span>The
problem states that 60 is MORE THAN the PRODUCT of 5 and N. Focus
on the words I bolded and capitalized. These are your key words that
tells you what operations
you need to use. Note that 'product' signals the operation of
multiplication (Since the answer you get from multiplying numbers is
called the 'product'.) and
'more than' signals the operation of addition (Because you are left
off with more than you originally had before adding). <span>
</span>Now
that we know that our algebraic expression contains multiplication,
addition, letter N and the numbers 2 and 5; we can start plugging the
numbers in.<span>
</span>60
= 2 (more than) + (product of) 5N. The answer for the first
attachment is
B. <span>
</span>_____________________________________________________________<span>
</span>All
we need to do for the AB problem (Question 25 on your material) is
solve AB.<span>
</span>Note
1: When a problem has no operation separating two letters or numbers,
this means multiplication.<span>
</span>Note
2: A and B are variables. Variables are letters that stand for and
hold the place of our unknown quantities. However, the values are not
unknown anymore given the fact that the question tells us that A= 42
and B = 2. Thus we substitute A with 42 and B with 2, then work from
there. 42 * 2 =84. Answer = A.
____________________________________________________________________
And
finally, for question 26, we use PEMDAS. P = parenthesis (), E =
exponent x^2, M/D = x or /, A/S means + or subtraction.
According
to PEMDAS, we first solve what's parenthesis, which is 77 – 32.
Using mental math, 77 – 32 = 45. ( 7 – 3 = 4 and 7 – 2 = 5.). 5/9
* 45 is what we have left. 5 divided by 9 =0.5555555555555556.
0.5555555555555556 * 45 = 25. Answer is D.
Answer:
this question is essentially -5 + 4
You could say:
negative 5 plus 4
Just in case you need it, the answer to this problem is -1
May I have brainliest please? :)
Answer: 12.69 miles approx
Step-by-step explanation:
let x represent the number of miles traveled
1.75 + 0.65x = 10
0.65x = 8.25
x = 12.69 miles approx
Find two pefect lines that touches the middle then do rise over run and that will be your slope
Answer:
Since we extract n elements in total, the algorithm for the running time for K sorted list is O (n log k+ k) = O (n log k)
Step-by-step explanation:
To understand better how we arrived at the aforementioned algorithm, we take it step by step
a, Construct a min-heap of the minimum elements from each of "k" lists.
The creation of this min-heap will cost O (k) time.
b) Next we run delete Minimum and move the minimum element to the output array.
Each extraction takes O (log k) time.
c) Then insert into the heap the next element from the list from which the element was extracted.
Now, we note that since we extract n elements in total, the running time is
O (n log k+ k) = O (n log k).
So we can conclude that :
Since we extract n elements in total, the algorithm for the running time for K sorted list is O (n log k+ k) = O (n log k)