Answer:
Actualmente estoy trabajando en una pregunta diferente en este momento.
Explanation:
Actualmente estoy trabajando en una pregunta diferente en este momento.
Answer:

Explanation:
From the information given:
Life requirement = 40 kh = 40 
Speed (N) = 520 rev/min
Reliability goal
= 0.9
Radial load
= 2600 lbf
To find C10 value by using the formula:

where;


The Weibull parameters include:



∴
Using the above formula:


![C_{10} = 3640 \times \bigg[\dfrac{1248}{0.9933481582}\bigg]^{\dfrac{3}{10}}](https://tex.z-dn.net/?f=C_%7B10%7D%20%3D%203640%20%5Ctimes%20%5Cbigg%5B%5Cdfrac%7B1248%7D%7B0.9933481582%7D%5Cbigg%5D%5E%7B%5Cdfrac%7B3%7D%7B10%7D%7D)

Recall that:
1 kN = 225 lbf
∴


Answer:
Codes for each of the problems are explained below
Explanation:
PROBLEM 1 IN C++:
#include<iostream>
using namespace std;
//fib function that calculate nth integer of the fibonacci sequence.
void fib(int n){
// l and r inital fibonacci values for n=1 and n=2;
int l=1,r=1,c;
//if n==1 or n==2 then print 1.
if(n==1 || n==2){
cout << 1;
return;
}
//for loop runs n-2 times and calculates nth integer of fibonacci sequence.
for(int i=0;i<n-2;i++){
c=l+r;
l=r;
r=c;
cout << "(" << i << "," << c << ") ";
}
//prints nth integer of the fibonacci sequence stored in c.
cout << "\n" << c;
}
int main(){
int n; //declared variable n
cin >> n; //inputs n to find nth integer of the fibonacci sequence.
fib(n);//calls function fib to calculate and print fibonacci number.
}
PROBLEM 2 IN PYTHON:
def fib(n):
print("fib({})".format(n), end=' ')
if n <= 1:
return n
else:
return fib(n - 1) + fib(n - 2)
if __name__ == '__main__':
n = int(input())
result = fib(n)
print()
print(result)
Answer:
The power of the brick wall it may be how the soiled ness of the wall too keep in the cold
Explanation: