Let h = height of triangle
h^2 + 12^2 = 15^2
h^2 + 144 = 225
h^2 = 225 - 144
h^2 = 81
sqrt{h^2} = sqrt{81}
h = 9 cm
For part B, we need to find surface area because it represents the perimeter of this 3-D figure. The formula needed is SA = B + LA.
1. First find the lateral area.
LA = perimeter of triangle • height
LA = ph
p = 15 + 15 + 24
p = 30 + 24
p = 54 cm
LA = (54)(9)
LA = 486 cm^2
2. We now find the base of each triangle. This is found by finding the area of each triangle and multiplying by 2.
A = (1/2)bh
A = (1/2)(24)(9)
A = 108 cm^2
A = 2•108 cm^2
A = 216 cm^2 = our B in the surface area formula.
SA = B + LA
SA = 216 cm^2 + 486 cm^2
SA = 702 cm^2
The amount of cardboard needed is 702 cm^2.
Answer:
Algorithm
Start
Int n // To represent the number of array
Input n
Int countsearch = 0
float search
Float [] numbers // To represent an array of non decreasing number
// Input array elements but first Initialise a counter element
Int count = 0, digit
Do
// Check if element to be inserted is the first element
If(count == 0) Then
Input numbers[count]
Else
lbl: Input digit
If(digit > numbers[count-1]) then
numbers[count] = digit
Else
Output "Number must be greater than the previous number"
Goto lbl
Endif
Endif
count = count + 1
While(count<n)
count = 0
// Input element to count
input search
// Begin searching and counting
Do
if(numbers [count] == search)
countsearch = countsearch+1;
End if
While (count < n)
Output count
Program to illustrate the above
// Written in C++
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main()
{
// Variable declaration
float [] numbers;
int n, count;
float num, searchdigit;
cout<<"Number of array elements: ";
cin>> n;
// Enter array element
for(int I = 0; I<n;I++)
{
if(I == 0)
{
cin>>numbers [0]
}
else
{
lbl: cin>>num;
if(num >= numbers [I])
{
numbers [I] = num;
}
else
{
goto lbl;
}
}
// Search for a particular number
int search;
cin>>searchdigit;
for(int I = 0; I<n; I++)
{
if(numbers[I] == searchdigit
search++
}
}
// Print result
cout<<search;
return 0;
}
Let 's' represent the amount of sales.
Plan 1:


Plan 2:


Equating the two plans together and solving for the amount of sales,

Collecting like terms,

Divide both sides by 0.08,

Hence, the amount of sales is $8,750.
Answer:i think the answer is something
Step-by-step explanation:
5x+6y=18
5x=18-6y
x=(18-6y)/5
Use that in the other equation
18(18-6y)/5 - 15y = 36
64.8-21.6y - 15y = 36
28.8=36.6y
.7868=y
Now put that number in for y on the first equation
5x+6(.78) = 18
5x + 4.68 = 18
5x = 13.32
x = 2.66
and y = .78