Answer:
a) 3.607 m
b) 1.5963 m
Explanation:
See that attached pictures for explanation.
Hi, you haven't provided the programing language in which you need the code, I'll just explain how to do it using Python, and you can apply a similar method for any programming language.
Answer:
1. def pyramid_volume(base_length, base_width, pyramid_height):
2. volume = base_length*base_width*pyramid_height/3
3. return(volume)
Explanation step by step:
- In the first line of code, we define the function pyramid_volume and it's input parameters
- In the second line, we perform operations with the input values to get the volume of the pyramid with a rectangular base, the formula is V = l*w*h/3
- In the last line of code, we return the volume
In the image below you can see the result of calling the function with input 4.5, 2.1, 3.0.
Answer:
Explanation:
% Clears variables and screen
clear; clc
% Asks user for input
n = input('Total number of objects: ');
r = input('Size of subgroup: ');
% Computes and displays permutation according to basic formulas
p = 1;
for i = n - r + 1 : n
p = p*i;
end
str1 = [num2str(p) ' permutations'];
disp(str1)
% Computes and displays combinations according to basic formulas
str2 = [num2str(p/factorial(r)) ' combinations'];
disp(str2)
=================================================================================
Example: check
How many permutations and combinations can be made of the 15 alphabets, taking four at a time?
The answer is:
32760 permutations
1365 combinations
==================================================================================
Q:What velocity does the boy attain if he throws the bricks one at a time?
Answer:Linear velocity since it moves back and firth and does not rotate like angular velocity.
Answer:
In Btu:
Q=0.001390 Btu.
In Joule:
Q=1.467 J
Part B:
Temperature at midpoint=274.866 C
Explanation:
Thermal Conductivity=k=30 (Btu/hr)/(ft ⋅ °F)= 
Thermal Conductivity is SI units:

Length=20 cm=0.2 m= (20*0.0328) ft=0.656 ft
Radius=4/2=2 mm =0.002 m=(0.002*3.28)ft=0.00656 ft
T_1=500 C=932 F
T_2=50 C= 122 F
Part A:
In Joules (J)

Heat Q is:

In Btu:

Heat Q is:

PArt B:
At midpoint Length=L/2=0.1 m

On rearranging:

