To solve this problem, let us say that:
money invested in stock A = A
money invested in stock B = B
money invested in stock C = C
The given problem states that:
C = A * (1 / 4) = 0.25 A
B = A * (1 / 2) = 0.50 A
It was stated that we only have $16,000 to invest.
Therefore:
A + B + C = 16,000
Substituting values of C and B in terms of A:
A + 0.50 A + 0.25 A = 16,000
1.75 A = 16,000
A = $9,142.86
So C and B is:
C = 0.25 (9142.86)
C = $2285.71
B = 0.50 (9142.86)
B = $4571.43
51 degrees should be the correct answer
Answer:
7 cm and 2 cm
Step-by-step explanation:
the other possible sides add up to more than 13, therefore it cannot be possible to make a triangle with them. Triangle Inequality Theorem.
The final answer to tour problem 16.3
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).