Answer: Pi= 4 - 4/3 + 4/5 - 4/7 + 4/9 ...
Explanation:
Is the same as the example,
If Π/4 = 1 - 1/3 + 1/5 - 1/7 + 1/9 ...
Then
(Π/4 )*4= 4*(1 - 1/3 + 1/5 - 1/7 + 1/9 ...)
Π =4 - 4/3 + 4/5 - 4/7 + 4/9 ...
The way to write this is
Sum(from n=0 to n=inf) of (-1)^n 4/(2n+1)
(photo)
Answer:
Explanation:
ADT for an 2-D array:
struct array{
int arr[10];
}arrmain[10];
An application that stores an array with 1000 rows and 1000 columns, where less than 10,000 of the array values are non-zero. The two different implementations for such arrays that would be more space efficient than a standard two-dimensional array implementation requiring one million positions are :
1) struct array{
int *p;
}arr[1000];
2) struct array{
int *p;
}arr[1000];
Answer:
a) 5.2 kPa
b) 49.3%
Explanation:
Given data:
Thermal efficiency ( л ) = 56.9% = 0.569
minimum pressure ( P1 ) = 100 kpa
<u>a) Determine the pressure at inlet to expansion process</u>
P2 = ?
r = 1.4
efficiency = 1 - [ 1 / (rp) ]
0.569 = 1 - [ 1 / (rp)^0.4/1.4
1 - 0.569 = 1 / (rp)^0.285
∴ (rp)^0.285 = 0.431
rp = 0.0522
note : rp = P2 / P1
therefore P2 = rp * P1 = 0.0522 * 100 kpa
= 5.2 kPa
b) Thermal efficiency
Л = 1 - [ 1 / ( 10.9 )^0.285 ]
= 0.493 = 49.3%
Here is the flow sheet. Hope this helps have a great day!!