Answer:
Work done = 125π J
Explanation:
Given:
P = P_i * ( 1 - (x/d)^2 / 25)
d = 5.0 cm
x = 5 * d cm = 25d
Pi = 12 bar
Work done = integral ( F . dx )
F (x) = P(x) * A
F (x) = (πd^2 / 4) * P_i * (1 - (x/d)^2 / 25)
Work done = integral ((πd^2 / 4) * P_i * (1 - (x/d)^2 / 25) ) . dx
For Limits 0 < x < 5d
Work done = (πd^2 / 4) * P_i integral ( (1 - (x/d)^2) / 25)) . dx
Integrate the function wrt x
Work done = (πd^2 / 4) * P_i * ( x - d*(x/d)^3 / 75 )
Evaluate Limits 0 < x < 5d :
Work done = (πd^2 / 4) * P_i * (5d - 5d / 3)
Work done = (πd^2 / 4) * P_i * (10*d / 3)
Work done = (5 π / 6)d^3 * P_i
Input the values:
Work done = (5 π / 6)(0.05)^3 * (1.2*10^6)
Work done = 125π J
Answer:
The code will be:
#include <stdio.h>
#include <stdlib.h>
main () {
double weight, shippingCharge, rate, segments;
int distance;
printf("Enter the weight: \n");
scanf("%lf", &weight);
printf("Enter the distance: \n");
scanf("%i", &distance);
if (weight <= 10) {
printf("Rate is $3.00 \n");
rate = 3;
} else {
printf("Rate is $5.00 \n");
rate = 5;
}
if (distance % 500 == 0) {
segments = distance / 500;
} else {
segments = distance / 500 + 1;
}
shippingCharge = rate * segments;
if (distance >1000) {
shippingCharge = shippingCharge + 10;
}
printf("Your shipping charge is $%lf\n", shippingCharge);
system ("pause");
}
Okay I believe you I swear
Answer:
A four-stroke cycle engine is an internal combustion engine that utilizes four distinct piston strokes (intake, compression, power, and exhaust) to complete one operating cycle. The piston make two complete passes in the cylinder to complete one operating cycle.
Explanation:
Answer:
Using python
num_boys = int(input("Enter number of boys :"))
num_girls = int(input("Enter number of girls :"))
budget = int(input("Enter the number of dollars spent per school year :"))
try:
dollarperstudent = budget/(num_boys+num_girls)
print("Dollar spent per student : "+str(dollarperstudent))#final result
except ZeroDivisionError:
print("unavailable")