Answer with Explanation:
The crown will be pure if it's specific gravity is 19.3
Now by definition of specific gravity it is the ratio between the weight of an object to the weight of water of equal volume
Since it is given that the weight of the crown is 11.8 N we need to find it's volume
Now According to Archimedes principle when the crown is immersed into water the water shall exert a force in upwards direction on the crown with a magnitude equaling to weight of the water displaced by the crown
Mathematically this is the difference between the weight of the crown in air and weight when immersed in water
Thus Buoyant force is 
Now by Archimedes principle This force equals in magnitude to the weight of water of same volume as of the crown
Thus the specific gravity of the crown equals

As we see that the specific gravity of the crown material is less than that of pure gold hence we conclude that it is impure.
Answer:
#include <stdio.h>
void SplitIntoTensOnes(int* tensDigit, int* onesDigit, int DecVal){
*tensDigit = (DecVal / 10) % 10;
*onesDigit = DecVal % 10;
return;
}
int main(void) {
int tensPlace = 0;
int onesPlace = 0;
int userInt = 0;
userInt = 41;
SplitIntoTensOnes(&tensPlace, &onesPlace, userInt);
printf("tensPlace = %d, onesPlace = %d\n", tensPlace, onesPlace);
return 0;
}
Answer:
a. Solid length Ls = 2.6 in
b. Force necessary for deflection Fs = 67.2Ibf
Factor of safety FOS = 2.04
Explanation:
Given details
Oil-tempered wire,
d = 0.2 in,
D = 2 in,
n = 12 coils,
Lo = 5 in
(a) Find the solid length
Ls = d (n + 1)
= 0.2(12 + 1) = 2.6 in Ans
(b) Find the force necessary to deflect the spring to its solid length.
N = n - 2 = 12 - 2 = 10 coils
Take G = 11.2 Mpsi
K = (d^4*G)/(8D^3N)
K = (0.2^4*11.2)/(8*2^3*10) = 28Ibf/in
Fs = k*Ys = k (Lo - Ls )
= 28(5 - 2.6) = 67.2 lbf Ans.
c) Find the factor of safety guarding against yielding when the spring is compressed to its solid length.
For C = D/d = 2/0.2 = 10
Kb = (4C + 2)/(4C - 3)
= (4*10 + 2)/(4*10 - 3) = 1.135
Tau ts = Kb {(8FD)/(Πd^3)}
= 1.135 {(8*67.2*2)/(Π*2^3)}
= 48.56 * 10^6 psi
Let m = 0.187,
A = 147 kpsi.inm^3
Sut = A/d^3 = 147/0.2^3 = 198.6 kpsi
Ssy = 0.50 Sut
= 0.50(198.6) = 99.3 kpsi
FOS = Ssy/ts
= 99.3/48.56 = 2.04 Ans.