Answer:
/* C Program to rotate matrix by 90 degrees */
#include<stdio.h>
int main()
{
int matrix[100][100];
int m,n,i,j;
printf("Enter row and columns of matrix: ");
scanf("%d%d",&m,&n);
/* Enter m*n array elements */
printf("Enter matrix elements: \n");
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
scanf("%d",&matrix[i][j]);
}
}
/* matrix after the 90 degrees rotation */
printf("Matrix after 90 degrees roration \n");
for(i=0;i<n;i++)
{
for(j=m-1;j>=0;j--)
{
printf("%d ",matrix[j][i]);
}
printf("\n");
}
return 0;
}
Answer:
0.024 m = 24.07 mm
Explanation:
1) Notation
= tensile stress = 200 Mpa
= plane strain fracture toughness= 55 Mpa
= length of a surface crack (Variable of interest)
2) Definition and Formulas
The Tensile strength is the ability of a material to withstand a pulling force. It is customarily measured in units (F/A), like the pressure. Is an important concept in engineering, especially in the fields of materials and structural engineering.
By definition we have the following formula for the tensile stress:
(1)
We are interested on the minimum length of a surface that will lead to a fracture, so we need to solve for 
Multiplying both sides of equation (1) by 
(2)
Sequaring both sides of equation (2):
(3)
Dividing both sides by
we got:
(4)
Replacing the values into equation (4) we got:
![\lambda=\frac{1}{\pi}[\frac{55 Mpa\sqrt{m}}{1.0(200Mpa)}]^2 =0.02407m](https://tex.z-dn.net/?f=%5Clambda%3D%5Cfrac%7B1%7D%7B%5Cpi%7D%5B%5Cfrac%7B55%20Mpa%5Csqrt%7Bm%7D%7D%7B1.0%28200Mpa%29%7D%5D%5E2%20%3D0.02407m)
3) Final solution
So the minimum length of a surface crack that will lead to fracture, would be 24.07 mm or more.
Answer:
5,4,1, this is a explication
Answer:
The work of the cycle.
Explanation:
The area enclosed by the cycle of the Pressure-Volume diagram of a Carnot engine represents the net work performed by the cycle.
The expansions yield work, and this is represented by the area under the curve all the way to the p=0 line. But the compressions consume work (or add negative work) and this is substracted fro the total work. Therefore the areas under the compressions are eliminated and you are left with only the enclosed area.