Answer:
1. V = D/t => D=Vt. as V = 16mph
D = 16t
2. Prya has been riding for t+½ hours
3. Prya has gone 12(t+½) miles
4. When Prya and Han meet
16t = 12t +6
4t = 6
t = 3/2 hours
Answer:
a. £24,714.29
b. £16,833.33
Step-by-step explanation:
The calculation of mean income is given below:-
Mean income = Total addition of salaries ÷ Number of workers
= £9,500 + £25,000 + £13,250 + £72,000 + £12,750 + £29,500 + £11,000
= £173,000 ÷ 7
= £24,714.29
Now,
the Mean income excluding Deva's salary:
= Formula of Mean income
= Total addition of salaries excluding Deva salary ÷ Number of workers
= (£9,500 + £25,000 + £13,250 + £12,750 + £29,500 + £11,000) ÷ 6
= £101,000 ÷ 6
= £16,833.33
Answer:
(3a + 2b)3
Step-by-step explanation:
STEP
1 :
Equation at the end of step 1
(((27•(a3))+((54•(a2))•b))+(36a•(b2)))+23b3
Step 2:
(((27•(a3))+((54•(a2))•b))+(22•32ab2))+23b3
Step 3:
(((27•(a3))+((2•33a2)•b))+(22•32ab2))+23b3
Step 4:
((33a3 + (2•33a2b)) + (22•32ab2)) + 23b3
Step 5:
Factoring: 27a3+54a2b+36ab2+8b3
Answer:
The worst case run time of Find2D is O(n²) because the worst case run time of arrayFind is O(n) and this function will be called for n rows from Find2D algorithm, hence O(n²)
.
An algorithm is said to have linear time if its worst case run time is O(n). Since it is O(n²) for Find2D, it is not a linear time algorithm
Step-by-step explanation: