Answer:
The maximum allowable Height of the slot is 11.685mm
Explanation:
The explanation is attached. The approach used is Bernoulli's equation
Answer
The answer and procedures of the exercise are attached in the following archives.
Step-by-step explanation:
You will find the procedures, formulas or necessary explanations in the archive attached below. If you have any question ask and I will aclare your doubts kindly.
Answer:
hello some parts of your question is missing attached below is the missing part
answer :
A) Determine changes in the 50-mm dimensions
The changes are : 0.006mm compression in y-direction
0.002 mm expansion in x and z directions
B) the stress required are evenly distributed
Explanation:
<em>Given data</em> :
50-mm cube of graphite fiber reinforced polymer matrix
subjected to 125-KN force in direction 2,
direction 2 is perpendicular to fiber direction ( direction 1 ) and cube is constrained against expansion in direction 3
A) Determine changes in the 50-mm dimensions
The changes are : 0.006mm compression in y-direction
0.002 mm expansion in x and z directions
B) the stress required are evenly distributed
attached below is the detailed solution
Answer:
The given grammar is :
S = T V ;
V = C X
X = , V | ε
T = float | double
C = z | w
1.
Nullable variables are the variables which generate ε ( epsilon ) after one or more steps.
From the given grammar,
Nullable variable is X as it generates ε ( epsilon ) in the production rule : X -> ε.
No other variables generate variable X or ε.
So, only variable X is nullable.
2.
First of nullable variable X is First (X ) = , and ε (epsilon).
L.H.S.
The first of other varibles are :
First (S) = {float, double }
First (T) = {float, double }
First (V) = {z, w}
First (C) = {z, w}
R.H.S.
First (T V ; ) = {float, double }
First ( C X ) = {z, w}
First (, V) = ,
First ( ε ) = ε
First (float) = float
First (double) = double
First (z) = z
First (w) = w
Explanation: