Answer:
The force induced on the aircraft is 2.60 N
Solution:
As per the question:
Power transmitted, 
Now, the force, F is given by:
(1)
where
v = velocity
Now,
For a geo-stationary satellite, the centripetal force,
is provided by the gravitational force,
:


Thus from the above, velocity comes out to be:


where
R = 
R = 
where
G = Gravitational constant
T = Time period of rotation of Earth
R is calculated as 42166 km
Now, from eqn (1):

F = 2.60 N
Answer:
At the time of the summer or winter solstices, the Sun is 23.44° degrees above or below the horizon, respectively, irrespective of time of day.
Explanation:
Answer:
Explanation:
% Clears variables and screen
clear; clc
% Asks user for input
n = input('Total number of objects: ');
r = input('Size of subgroup: ');
% Computes and displays permutation according to basic formulas
p = 1;
for i = n - r + 1 : n
p = p*i;
end
str1 = [num2str(p) ' permutations'];
disp(str1)
% Computes and displays combinations according to basic formulas
str2 = [num2str(p/factorial(r)) ' combinations'];
disp(str2)
=================================================================================
Example: check
How many permutations and combinations can be made of the 15 alphabets, taking four at a time?
The answer is:
32760 permutations
1365 combinations
==================================================================================
Answer: 255
255 turns are required to create 25 ohms of secondary impedance.
Explanation:
Given that,
Number of turns in primary wire N₁ = 900
impedance on Primary wire Z₁ = 400 ohms
Number of turns in Secondary wire N₂ = ?
impedance on Secondary wire Z₂ = 25 ohms
we know that, the relationship between turn and impedance is
Zp / Zs = ( Np / Ns )²
(Primary impedance / secondary impedance) = Number of turns in primary wire / Number of turns in secondary wire)²
there fore
Z₁ / Z₂ = ( N₁ / N₂ )²
Now we substitute
( 400 / 25 ) = ( 900 / N₂ )²
400 / 25 = 900² / N₂²
we cross multiple to get our N₂
400 × N₂² = 900² × 25
N₂² = ( 900² × 25 ) / 400
N₂² = ( 810000 × 25 ) / 400
N₂² = 20250000 / 400
N₂² = 50625
N₂ = √50625
N₂ = 225
Therefore 255 turns are required to create 25 ohms of secondary impedance.