Answer:
The answer is "
".
Explanation:
Please find the correct question in the attachment file.
using formula:



Answer:
Tmax= 46.0 lb-in
Explanation:
Given:
- The diameter of the steel rod BC d1 = 0.25 in
- The diameter of the copper rod AB and CD d2 = 1 in
- Allowable shear stress of steel τ_s = 15ksi
- Allowable shear stress of copper τ_c = 12ksi
Find:
Find the torque T_max
Solution:
- The relation of allowable shear stress is given by:
τ = 16*T / pi*d^3
T = τ*pi*d^3 / 16
- Design Torque T for Copper rod:
T_c = τ_c*pi*d_c^3 / 16
T_c = 12*1000*pi*1^3 / 16
T_c = 2356.2 lb.in
- Design Torque T for Steel rod:
T_s = τ_s*pi*d_s^3 / 16
T_s = 15*1000*pi*0.25^3 / 16
T_s = 46.02 lb.in
- The design torque must conform to the allowable shear stress for both copper and steel. The maximum allowable would be:
T = min ( 2356.2 , 46.02 )
T = 46.02 lb-in
Answer:
See explaination
Explanation:
#include <iostream>
#include<string.h>
using namespace std;
bool isPalindrome(string str, int lower, int upper){
if(str.length() == 0 || lower>=upper){
return true;
}
else{
if(str.at(lower) == str.at(upper)){
return isPalindrome(str,lower+1,upper-1);
}
else{
return false;
}
}
}
int main(){
string input;
cout<<"Enter string: ";
cin>>input;
if(isPalindrome(input,0,input.length()-1)){
cout<<input<<" is a palindrome"<<endl;
}
else{
cout<<input<<" is NOT a palindrome"<<endl;
}
return 0;
}
Answer: Partial pressures are 0.6 MPa for nitrogen gas and 0.4 MPa for carbon dioxide.
Explanation: <u>Dalton's</u> <u>Law</u> <u>of</u> <u>Partial</u> <u>Pressure</u> states when there is a mixture of gases the total pressure is the sum of the pressure of each individual gas:

The proportion of each individual gas in the total pressure is expressed in terms of <u>mole</u> <u>fraction</u>:
= moles of a gas / total number moles of gas
The rigid tank has total pressure of 1MPa.
molar mass = 14g/mol
mass in the tank = 2000g
number of moles in the tank:
= 142.85mols
molar mass = 44g/mol
mass in the tank = 4000g
number of moles in the tank:
= 90.91mols
Total number of moles: 142.85 + 90.91 = 233.76 mols
To calculate partial pressure:

For Nitrogen gas:

= 0.6
For Carbon Dioxide:



0.4
Partial pressures for N₂ and CO₂ in a rigid tank are 0.6MPa and 0.4MPa, respectively.