Answer:
(a) Mn = M₁ + (n-1) (M₂ -M₁) = 1 + (n- 1) 1 = n (b) n > 10 (exceed 10) or n =11 (c) n >50 or n= 51
After making a journey of 51 times, the rocket will be discarded
Explanation:
Solution
(a) Let Mn denotes the number of maintenance visits after the nth journey
Then M₁ = 1 , M₂ = 1 +M₁ = 2, M₃ = 1 +M₂ = 3
We therefore, notice that M follows an arithmetic sequence
So,
Mn = M₁ + (n-1) (M₂ -M₁)
= 1 + (n- 1) 1 = n
or Mn =n
(b) For what value of n we will get fro Mn > 10
Thus,
n > 10 (exceed 10) or n =11
(c)Similarly of Mn is greater than 50 or Mn>50, the rocket will not be used or reused
So,
n >50 or n= 51
After making a journey of 51 times, the rocket will be discarded
Answer:
G = $37,805.65
Explanation:
I found this on another site:
475,000 = 25,000(P/A,10%,6) + G(P/G,10%,6)
475,000 = 25,000(4.3553) + G(9.6842)
9.6842G = 366,117.50
G = $37,805.65
Answer: 1766.667 Ω = 1.767kΩ
Explanation:
V=iR
where V is voltage in Volts (V), i is current in Amps (A), and R is resistance in Ohms(Ω).
3mA = 0.003 A
Rearranging the equation, we get
R=V/i
Now we are solving for resistance. Plug in 0.003 A and 5.3 V.
R = 5.3 / 0.003
= 1766.6667 Ω
= 1.7666667 kΩ
The 6s are repeating so round off to whichever value you need for exactness.
Answer:
1. Yes, they are all necessary.
2. Both written and verbal communication skills are of the utmost importance in business, especially in engineering. Communication skills boost you or your teams' performance because they provide clear information and expectations to help manage and deliver excellent work.
Answer:
public static int average(int j, int k) {
return (int)(( (long)(i) + (long)(j) ) /2 );
}
Explanation:
The above code returns the average of two integer variables
Line 1 of the code declares a method along with 2 variables
Method declared: average of integer data type
Variables: j and k of type integer, respectively
Line 2 calculates the average of the two variables and returns the value of the average.
The first of two integers to average is j
The second of two integers to average is k
The last parameter ensures average using (j+k)/2