Answer:
The Python Code for Fibonacci Sequence is :
# Function for nth Fibonacci number
def Fibonacci(n):
if n<0:
print("Incorrect input")
# First Fibonacci number is 0
elif n==0:
return 0
# Second Fibonacci number is 1
elif n==1:
return 1
else:
return Fibonacci(n-1)+Fibonacci(n-2)
# Driver Program
print(Fibonacci(9))
Explanation:
The Fibonacci numbers are the numbers in the following integer sequence.
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ……..
In mathematical terms, the sequence Fn of Fibonacci numbers is defined by the recurrence relation
Fn = Fn-1 + Fn-2
with seed values
F0 = 0 and F1 = 1.
Answer:
Applying Kirchhoff's current law at inverting terminal
Explanation:
Detailed explanation is given in the attached document.
Answer:
The bulb will be
times as bright as it is in Europe.
Explanation:
Data provided in the question:
Power of bulb in Europe = 75 W
Voltage provided in Europe = 240 V
Voltage provided in United Stated = 120 V
Now,
We know,
Power = Voltage² ÷ Resistance
Therefore,
75 = 240² ÷ Resistance
or
Resistance = 240² ÷ 75
or
Resistance = 768 Ω
Therefore,
Power in United States = Voltage² ÷ Resistance
= 120² ÷ 768
= 18.75 W
Therefore,
Ratio of powers

= 
Hence,
The bulb will be
times as bright as it is in Europe.
Answer:
0.71 lbf
Explanation:
Use ideal gas law:
PV = nRT
where P is absolute pressure,
V is volume,
n is number of moles,
R is universal gas constant,
and T is absolute temperature.
The absolute pressure is the sum of the atmospheric pressure and the gauge pressure.
P = 32 lbf/in² + 14.7 lbf/in²
P = 46.7 lbf/in²
Absolute temperature is in Kelvin or Rankine:
T = 75 + 459.67 R
T = 534.67 R
Given V = 3.0 ft³, and R = 10.731 ft³ psi / R / lb-mol:
PV = nRT
(46.7 lbf/in²) (3.0 ft³) = n (10.731 ft³ psi / R / lb-mol) (534.67 R)
n = 0.02442 lb-mol
The molar mass of air is 29 lbm/lb-mol, so the mass is:
m = (0.02442 lb-mol) (29 lbm/lb-mol)
m = 0.708 lbm
The weight of 1 lbm is lbf.
W = 0.708 lbf
Rounded to two significant figures, the weight of the air is 0.71 lbf.