Answer: the number -5 is a real number
Real numbers are both negative and positive numbers. -5 is a negative number. Since real numbers include negative numbers, -5 is the answer.
Hope this helps!
Total number of stocks bought = 20
Rate at which each stocks were bought = 31 1/2
= 63/2
Rate at which 20 stocks were bought = 20 * (63/2) dollars
= 10 * 63 dollars
= 630 dollars
Rate at which each stocks were sold = 35 1/4
= 141/4 dollars
Rate at which 20 stocks were sold = 20 * (141/4) dollars
= 5 * 141 dollars
= 705 dollars
Then
Amount of profit made by selling 20 stocks = (705 - 630) dollars
= 75 dollars
So the total amount of profit made is $75. The correct option in regards to the given question is option "D".
Answer: 9 lb of fresh tomatoes
6 c peeled chopped cucumbers
3 c chopped red bell peppers
3 c chopped red onions
6 small jalapenos
6 garlic cloves
1 1/2 olive oil
6 limes, juiced
12 tsp balsamic vinegar
12 tsp Worcestershire sauce
3 tsp cumin
6 tsp salt
1 1/2 tsp black pepper
12 tsp basil
I really hope this helps.
Step-by-step explanation:
Answer:
(a) Circle Q is 9.4 units to the center of circle P
(b) Circle Q has a smaller radius
Step-by-step explanation:
Given


Solving (a): The distance between both
The equation of a circle is:

Where


P and Q can be rewritten as:


So, for P:


For Q:


The distance between them is:

Where:
--- 
--- 
So:





Solving (b): The radius;
In (a), we have:
--- circle P
--- circle Q
By comparison

<em>Hence, circle Q has a smaller radius</em>
Answer:
Step-by-step explanation:
So let a[i] be the input array to the function find_minimum(): . We will use python to present this recursive algorithm
def find_minimum(a, n):
if n == 1:
return a[0]
return min(a[n], find_minimum(a, n - 1))
find_minimum(a, len(a) - 1)