Answer:
P = 4.745 kips
Explanation:
Given
ΔL = 0.01 in
E = 29000 KSI
D = 1/2 in
LAB = LAC = L = 12 in
We get the area as follows
A = π*D²/4 = π*(1/2 in)²/4 = (π/16) in²
Then we use the formula
ΔL = P*L/(A*E)
For AB:
ΔL(AB) = PAB*L/(A*E) = PAB*12 in/((π/16) in²*29*10⁶ PSI)
⇒ ΔL(AB) = (2.107*10⁻⁶ in/lbf)*PAB
For AC:
ΔL(AC) = PAC*L/(A*E) = PAC*12 in/((π/16) in²*29*10⁶ PSI)
⇒ ΔL(AC) = (2.107*10⁻⁶ in/lbf)*PAC
Now, we use the condition
ΔL = ΔL(AB)ₓ + ΔL(AC)ₓ = ΔL(AB)*Cos 30° + ΔL(AC)*Cos 30° = 0.01 in
⇒ ΔL = (2.107*10⁻⁶ in/lbf)*PAB*Cos 30°+(2.107*10⁻⁶ in/lbf)*PAC*Cos 30°= 0.01 in
Knowing that PAB*Cos 30°+PAC*Cos 30° = P
we have
(2.107*10⁻⁶ in/lbf)*P = 0.01 in
⇒ P = 4745.11 lb = 4.745 kips
The pic shown can help to understand the question.
Answer:
The solution code is written in Java.
System.out.println(numItems);
Explanation:
Java <em>println() </em>method can be used to display any string on the console terminal. We can use <em>println()</em> method to output the value held by variable <em>numItems.</em> The <em>numItems </em>is passed as the input parameter to <em>println()</em> and this will output the value of <em>numItems</em> to console terminal and at the same time the output with be ended with a newline automatically.
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.