During a sale a store offered 70% discount on a particular camera that was originally price at $450 what was the price of the camera after the discount

Answers

Answer 1

Answer:

$135

Step-by-step explanation:

Assuming that the 70% discount was applied on the original price of $450,

you multiply 0.7 (70%) to 450 and subtract that value from the original price. Basically, you are left with 30% of the original price.

Imagine taking the full price of the camera and subtracting 70% off that original price.

450 - (0.7)(450) = $135

The price of the camera after the 70% off discount is $135.


Related Questions

Determine whether the given function is continuous. You can verify your conclusions by graphing the function with a graphing utility. g(x)=(9x^(2)+8x+7)/(x+7) The function is continuous. The functio

Answers

The given function is [tex]$g(x) = \frac{9x^2 + 8x + 7}{x + 7}$[/tex]. We have determined that the given function is continuous .

Let's check the left and right-hand limits to verify the continuity of the function at x = -7:[tex]$$\lim_{x \rightarrow -7^{-}} \frac{9x^2 + 8x + 7}{x + 7} = \frac{0}{0}$$$$\lim_{x \rightarrow -7^{-}} \frac{9x^2 + 8x + 7}{x + 7} = \lim_{x \rightarrow -7^{-}} \frac{(3x+1)(3x+7)}{x+7} = \frac{-14}{0^{-}}$$$$\lim_{x \rightarrow -7^{+}} \frac{9x^2 + 8x + 7}{x + 7} = \frac{0}{0}$$$$\lim_{x \rightarrow -7^{+}} \frac{9x^2 + 8x + 7}{x + 7} = \lim_{x \rightarrow -7^{+}} \frac{(3x+1)(3x+7)}{x+7} = \frac{-14}{0^{+}}$$[/tex]

Since the left-hand limit and the right-hand limit of the function are both of the form [tex]$\frac{0}{0}$[/tex], we can apply L'Hopital's rule to evaluate the limit:[tex]$\lim_{x \rightarrow -7} \frac{9x^2 + 8x + 7}{x + 7} = \lim_{x \rightarrow -7} \frac{18x + 8}{1} = -26$[/tex]. Hence, the value of the function [tex]$g(x) = \frac{9x^2 + 8x + 7}{x + 7}$[/tex] at x = -7 is -26.

Therefore, the function is continuous.

Let's learn more about L'Hopital's rule:

https://brainly.com/question/24116045

#SPJ11

(True or False) If you perform a test and get a p-value = 0.051 you should reject the null hypothesis.
True
False

Answers

If you perform a test and get a p-value = 0.051 you should not reject the null hypothesis. The statement given in the question is False.

A p-value is a measure of statistical significance, and it is used to evaluate the likelihood of a null hypothesis being true. If the p-value is less than or equal to the significance level, the null hypothesis is rejected. However, if the p-value is greater than the significance level, the null hypothesis is accepted, which means that the results are not statistically significant and can occur due to chance alone. A p-value is a measure of the evidence against the null hypothesis. The smaller the p-value, the stronger the evidence against the null hypothesis. On the other hand, a larger p-value indicates that the evidence against the null hypothesis is weaker. A p-value less than 0.05 is considered statistically significant.

Therefore, if you perform a test and get a p-value = 0.051 you should not reject the null hypothesis.

Learn more about p-value visit:

brainly.com/question/30461126

#SPJ11

differentiate the function
y=(x²+4x+3 y=x²+4x+3) /√x
differentiate the function
f(x)=[(1/x²) -(3/x^4)](x+5x³)

Answers

The derivative of the function y = (x² + 4x + 3)/(√x) is shown below:

Given function,y = (x² + 4x + 3)/(√x)We can rewrite the given function as y = (x² + 4x + 3) * x^(-1/2)

Hence, y = (x² + 4x + 3) * x^(-1/2)

We can use the Quotient Rule of Differentiation to differentiate the above function.

Hence, the derivative of the given function y = (x² + 4x + 3)/(√x) is

dy/dx = [(2x + 4) * x^(1/2) - (x² + 4x + 3) * (1/2) * x^(-1/2)] / x = [2x(x + 2) - (x² + 4x + 3)] / [2x^(3/2)]

We simplify the expression, dy/dx = (x - 1) / [x^(3/2)]

Hence, the derivative of the given function y = (x² + 4x + 3)/(√x) is

(x - 1) / [x^(3/2)].

The derivative of the function f(x) = [(1/x²) - (3/x^4)](x + 5x³) is shown below:

Given function, f(x) = [(1/x²) - (3/x^4)](x + 5x³)

We can use the Product Rule of Differentiation to differentiate the above function.

Hence, the derivative of the given function f(x) = [(1/x²) - (3/x^4)](x + 5x³) is

df/dx = [(1/x²) - (3/x^4)] * (3x² + 1) + [(1/x²) - (3/x^4)] * 15x²

We simplify the expression, df/dx = [(1/x²) - (3/x^4)] * [3x² + 1 + 15x²]

Hence, the derivative of the given function f(x) = [(1/x²) - (3/x^4)](x + 5x³) is

[(1/x²) - (3/x^4)] * [3x² + 1 + 15x²].

To know more about differentiation visit:

https://brainly.com/question/25324584

#SPJ11

(Use symbols not mathematical operator)Verify the Associativity of Exclusive OR rule ((p ⊕ q) ⊕ r) ↔ (p ⊕ (q ⊕ r)) by first converting both sides to ANDs and ORs using the Definition of Exclusive OR rule, then using the distributive law and the commutativity and associativity rules.
RULES:
¬(p∧q)↔(¬p∨¬q) DeMorgan And-To-Or
¬(p∨q)↔(¬p∧¬q) DeMorgan Or-To-And
(p⊕q)↔((p∧¬q)∨(¬p∧q)) Exclusive Or
(p∧q)↔(q∧p), (p∨q)↔((q∨p), (p⊕q)↔(q⊕p) Commutativity
(p∧(q∧r))↔((p∧q)∧r), (p∨(q∨r))↔((p∨q)∨r), (p⊕(q⊕r))↔((p⊕q)⊕r) Associativity
(p∧(q∨r))↔((p∧q)∨(p∧r)), (p∨(q∧r))↔((p∨q)∧(p∨r)), (p∧(q⊕r))↔((p∧q)⊕(p∧r)) Distributive Law

Answers

By using the Definition of Exclusive OR rule, the distributive law, and the associativity rule, we have verified that ((p ⊕ q) ⊕ r) ↔ (p ⊕ (q ⊕ r)) holds true.

To verify the associativity of the Exclusive OR rule, we need to show that ((p ⊕ q) ⊕ r) ↔ (p ⊕ (q ⊕ r)) is true by converting both sides to ANDs and ORs using the Definition of Exclusive OR rule and applying the distributive law, commutativity, and associativity rules.

First, let's convert both sides to ANDs and ORs using the Definition of Exclusive OR rule:

((p ⊕ q) ⊕ r) = ((p ∧ ¬q) ∨ (¬p ∧ q)) ⊕ r

(p ⊕ (q ⊕ r)) = p ⊕ ((q ∧ ¬r) ∨ (¬q ∧ r))

Next, let's apply the distributive law to both sides:

((p ∧ ¬q) ∨ (¬p ∧ q)) ⊕ r = (p ∧ (q ∧ ¬r)) ∨ (p ∧ (¬q ∧ r))

Now, let's simplify the expressions further:

((p ∧ ¬q) ∨ (¬p ∧ q)) ⊕ r = (p ∧ q ∧ ¬r) ∨ (p ∧ ¬q ∧ r)

(p ∧ (q ∧ ¬r)) ∨ (p ∧ (¬q ∧ r)) = (p ∧ q ∧ ¬r) ∨ (p ∧ ¬q ∧ r)

By comparing both sides, we can see that they are equivalent.

Therefore, by using the Definition of Exclusive OR rule, the distributive law, and the associativity rule, we have verified that ((p ⊕ q) ⊕ r) ↔ (p ⊕ (q ⊕ r)) holds true.

To know more about distributive law:

https://brainly.com/question/30339269


#SPJ4

Kirt is 33 years old. What is his 50 % maximum heart rate? Round to the nearest whole number. Question 5 Kirt is 33 years old. What is his 70 % maximum heart rate? Round to the nearest w

Answers

70% maximum heart rate of Kirti ≈ 131

To calculate Kirt's maximum heart rate, we can use the formula:

Maximum heart rate = 220 - age

Substituting Kirt's age of 33, we get:

Maximum heart rate = 220 - 33 = 187

To calculate Kirt's 50% maximum heart rate, we can multiply his maximum heart rate by 0.5:

50% maximum heart rate = 0.5 x 187 = 93.5

Rounding to the nearest whole number, we get:

50% maximum heart rate ≈ 94

To calculate Kirt's 70% maximum heart rate, we can multiply his maximum heart rate by 0.7:

70% maximum heart rate = 0.7 x 187 = 130.9

Rounding to the nearest whole number, we get:

70% maximum heart rate ≈ 131

Learn more about "heart rate" : https://brainly.com/question/1395397

#SPJ11

Ana and Marie are collecting clothes for calamity victims. Ana collected (2)/(3) as many clothes Marie did. If Marie collected 2(4)/(5) bags of clothes, how many bags of clothes did Ana collect?

Answers

8/15 bags of clothes were collected by Ana.

Given, Ana and Marie are collecting clothes for calamity victims.

Ana collected (2)/(3) as many clothes Marie did.

If Marie collected 2(4)/(5) bags of clothes, we have to find how many bags of clothes did Ana collect.

Let the amount of clothes collected by Marie = 2(4)/(5)

We have to find how many bags of clothes did Ana collect

Ana collected (2)/(3) as many clothes as Marie did.

Therefore,

Ana collected:

(2)/(3) × 2(4)/(5) of clothes

= 8/15 clothes collected by Marie

We know that,

2(4)/(5) bags of clothes were collected by Marie

8/15 bags of clothes were collected by Ana

Therefore, 8/15 bags of clothes were collected by Ana.

Answer: 8/15

To know more about bags refer here:

https://brainly.com/question/32772219

#SPJ11

center (-5,4),When Center (5,4) and tangent to the x axis are given, what is the standard equation of the Circle?

Answers

The given center coordinates are (-5,4), and Center (5,4).The center coordinates of the circle are (5,4), and the radius of the circle is equal to the distance between the center coordinates and the x-axis.

So, the radius of the circle is 4. Now, the standard equation of the circle is (x-a)² + (y-b)² = r²where (a, b) are the coordinates of the center and r is the radius of the circle.We know that the center of the circle is (5, 4) and the radius is 4 units, so we can substitute these values into the equation to get the standard equation of the circle.(x - 5)² + (y - 4)² = 4²= (x - 5)² + (y - 4)² = 16So, the standard equation of the circle is (x - 5)² + (y - 4)² = 16 when the center coordinates are (5, 4) and the circle is tangent to the x-axis.

To know more about coordinates visit:

https://brainly.com/question/32836021

#SPJ11

P(−2,1,0),Q(2,3,2),R(1,4,−1),S(3,6,1) a) Find a nonzero vector orthogonal to the plane through the points P,Q,R. b) Find the area of the triangle PQR. c) Find the volume of the parallelepiped with adjacent edges PQ, PR, and PS.

Answers

a) A nonzero vector orthogonal to the plane through the points P, Q, and R is N = (8, -9, 0). b) The area of triangle PQR is 1/2 * √145. c) The volume of the parallelepiped with adjacent edges PQ, PR, and PS is 5.

a) To find a nonzero vector orthogonal to the plane through the points P, Q, and R, we can find the cross product of the vectors formed by subtracting one point from another.

Let's find two vectors in the plane, PQ and PR:

PQ = Q - P

= (2, 3, 2) - (-2, 1, 0)

= (4, 2, 2)

PR = R - P

= (1, 4, -1) - (-2, 1, 0)

= (3, 3, -1)

Now, we can find the cross product of PQ and PR:

N = PQ × PR

= (4, 2, 2) × (3, 3, -1)

Using the determinant method for the cross product, we have:

N = (2(3) - 2(-1), -1(3) - 2(3), 4(3) - 4(3))

= (8, -9, 0)

b) To find the area of triangle PQR, we can use the magnitude of the cross product of PQ and PR divided by 2.

The magnitude of N = (8, -9, 0) is:

√[tex](8^2 + (-9)^2 + 0^2)[/tex]

= √(64 + 81 + 0)

= √145

c) To find the volume of the parallelepiped with adjacent edges PQ, PR, and PS, we can use the scalar triple product.

The scalar triple product of PQ, PR, and PS is given by the absolute value of (PQ × PR) · PS.

Let's find PS:

PS = S - P

= (3, 6, 1) - (-2, 1, 0)

= (5, 5, 1)

Now, let's calculate the scalar triple product:

V = |(PQ × PR) · PS|

= |N · PS|

= |(8, -9, 0) · (5, 5, 1)|

Using the dot product, we have:

V = |(8 * 5) + (-9 * 5) + (0 * 1)|

= |40 - 45 + 0|

= |-5|

= 5

To know more about nonzero vector,

https://brainly.com/question/33401611

#SPJ11

The average time a machine works properly before a major breakdown is exponentially distributed with a mean value of 100 hours.

Q7) What is the probability that the machine will function between 50 and 150 hours without a major breakdown?

Q8) The machine works 100 hours without a major breakdown. What is the probability that it will work another extra 20 hours properly?

Answers

The probability that the machine will function between 50 and 150 hours without a major breakdown is 0.3736.

The probability that it will work another extra 20 hours properly is 0.0648.

To solve these questions, we can use the properties of the exponential distribution. The exponential distribution is often used to model the time between events in a Poisson process, such as the time between major breakdowns of a machine in this case.

For an exponential distribution with a mean value of λ, the probability density function (PDF) is given by:

f(x) = λ * e^(-λx)

where x is the time, and e is the base of the natural logarithm.

The cumulative distribution function (CDF) for the exponential distribution is:

F(x) = 1 - e^(-λx)

Q7) To find this probability, we need to calculate the difference between the CDF values at 150 hours and 50 hours.

Let λ be the rate parameter, which is equal to 1/mean. In this case, λ = 1/100 = 0.01.

P(50 ≤ X ≤ 150) = F(150) - F(50)

= (1 - e^(-0.01 * 150)) - (1 - e^(-0.01 * 50))

= e^(-0.01 * 50) - e^(-0.01 * 150)

≈ 0.3935 - 0.0199

≈ 0.3736

Q8) In this case, we need to calculate the probability that the machine functions between 100 and 120 hours without a major breakdown.

P(100 ≤ X ≤ 120) = F(120) - F(100)

= (1 - e^(-0.01 * 120)) - (1 - e^(-0.01 * 100))

= e^(-0.01 * 100) - e^(-0.01 * 120)

≈ 0.3660 - 0.3012

≈ 0.0648

learn more about probability

https://brainly.com/question/31828911

#SPJ11

The Unique Gifts catalog lists a "super loud and vibrating alarm
clock." Their records indicate the following information on the
relation of monthly supply and demand quantities to the price of
the cl

Answers

(a) Demand linear equation: (49, 31), (137, 167)

Supply linear equation: (31, 49), (132, 172)

(b) Demand equation: p = -0.4x + 131.2

(c) Supply equation: p = 0.45x - 126.4

(d) Equilibrium quantity: 88

Equilibrium price: $114

Based on the given information, let's find the requested values:

(a) Points on the demand linear equation:

(49, 31) and (137, 167)

Points on the supply linear equation:

(31, 49) and (132, 172)

(b) The demand equation:

p = -0.4x + 131.2

(c) The supply equation:

p = 0.45x - 126.4

(d) The equilibrium quantity and price:

Equilibrium quantity: 88

Equilibrium price: $114

The correct question should be :

The Unique Gifts catalog lists a "super loud and vibrating alarm clock. Their records indicate the following information on the relation of monthly supply and demand quantities to the price of the clock. 172 $49 Demand Supply Price 167 132 $31 137 Use this information to find the following. (a) points on the demand linear equation xP)-( 49,31 * ) (smaller x-value) (x.P)-( 137 - 167 * ) (larger x-value) points on the supply linear equation XP) -( 49-31_* ) (smaller x-value) (xp) - ( 172 - 132 x (larger x-value) (b) the demand equation p - -0.4x + 131.2 x (c) the supply equation p - 0.45x - 126.4 x (d) the equilibrium quantity and price Equilibrium occurs when the price of the clock is $ 303 X and the quantity is 10 13. - 2 points ROLFFM8 2.1.058. My Notes Ask Your Teacher The Catalog Store has data indicating that, when the price of a CD bookcase is $132, the demand quantity is 72 and the supply quantity is 96. The equilibrium point occurs when the price is $114 and the quantity is 88. Find the linear demand equation p let y be the demand quantity) Find the linear supply equation p lex be the supply quantity Need Help?

To learn more about linear equations visit : https://brainly.com/question/2030026

#SPJ11

An address in a block is given as 115.15.47.238. N=2 32−n
n=32−log 2

(N)

a. Find the number of addresses in the block, the first address, and the last address. b. Draw an example network.

Answers

a. The number of addresses in the block is N, the first address is the network address with all host bits set to zero, and the last address is the network address with all host bits set to one.

b. A network diagram visually represents the network address block and individual addresses within it, but without specific information, a detailed example diagram cannot be provided.

a. To find the number of addresses in the block, we need to calculate 2^(32-n), where n is the number of bits used to represent the network address.

N = 2^(32 - n), we need to substitute the value of N to find the number of addresses:

N = 2^(32 - log2(N))

Simplifying the equation:

2^log2(N) = N

So, the number of addresses in the block is N.

To find the first address, we start with the given address and set all the bits after the network address bits to zero. In this case, the network address is 115.15.47.0.

To find the last address, we set all the bits after the network address bits to one. In this case, the network address is 115.15.47.255.

b. In a network diagram, you would typically represent the network address block and the individual addresses within that block. The network address block would be represented as a rectangle or square, with the first address and last address labeled within the block. The diagram would also include any connecting lines or arrows to represent the network connections between different blocks or devices.

Please note that without more specific information about the network configuration and subnetting, it is not possible to provide a more detailed example network diagram.

To know more about network address, refer to the link below:

https://brainly.com/question/31859633#

#SPJ11

The workers' union at a certain university is quite strong. About 96% of all workers employed by the university belong to the workers' union. Recently, the workers went on strike, and now a local TV station plans to interview a sample of 20 workers, chosen at random, to get their opinions on the strike.
Answer the following.
(If necessary, consult a list of formulas.)
(a) Estimate the number of workers in the sample who are union members by giving the mean of the relevant distribution (that is, the expectation of the relevant random variable). Do not round your response.
(b) Quantify the uncertainty of your estimate by giving the standard deviation of the distribution. Round your response to at least three decimal places.

Answers

A. The mean of the relevant distribution is 19.2.

B. Rounded to at least three decimal places, the standard deviation of the distribution is approximately 1.760.

(a) The number of workers in the sample who are union members can be estimated by taking the expected value of the relevant random variable. In this case, the random variable represents the number of union members in a sample of 20 workers.

Since 96% of all workers belong to the union, we can expect that 96% of the workers in the sample will also be union members. Therefore, the expected value of the random variable is given by:

E(X) = np

where n is the sample size (20) and p is the probability of success (0.96).

E(X) = 20 * 0.96 = 19.2

Therefore, the mean of the relevant distribution is 19.2.

(b) To quantify the uncertainty of the estimate, we can calculate the standard deviation of the distribution. For a binomial distribution, the standard deviation is given by:

σ = sqrt(np(1-p))

Using the same values as above, we can calculate the standard deviation:

σ = sqrt(20 * 0.96 * (1 - 0.96))

= sqrt(20 * 0.96 * 0.04)

≈ 1.760

Rounded to at least three decimal places, the standard deviation of the distribution is approximately 1.760.

Learn more about distribution from

https://brainly.com/question/23286309

#SPJ11

Select all relations that are true 2 log a

(n)
=Θ(log b

(n))
2 (2n)
=O(2 n
)
2 2n+1
=O(2 n
)
(n+a) 6
=Θ(n 6
)
10 10
n 2
⋅2 log 2

(n)
=O(2 n
)

Answers

The given relations are analyzed to determine their truth. It is found that log base a of n is Theta of log base b of n, and 2 raised to the power of 2n is O(2^n).

The relations given are:

2 log base a of n = Theta(log base b of n):

This relation states that the logarithm of n to the base a is of the same order as the logarithm of n to the base b. It means that the growth rates of these two logarithmic functions are comparable.

2^(2n) = O(2^n):

This relation implies that the function 2 raised to the power of 2n is bounded above by the function 2 raised to the power of n. In other words, the growth rate of 2 raised to the power of 2n is not greater than the growth rate of 2 raised to the power of n.

The other two relations:

3. 2^(2n+1) = O(2^n)

(n+a)^6 = Theta(n^6)

are not true. The third relation states that the function 2 raised to the power of 2n+1 is bounded above by the function 2 raised to the power of n, which is incorrect. The fourth relation implies that (n+a) raised to the power of 6 is of the same order as n raised to the power of 6, which is also not true.

Lastly, the relation:

5. (10^n)^(2 log base 2 of n) = O(2^n)

states that the function (10^n) raised to the power of (2 log base 2 of n) is bounded above by the function 2 raised to the power of n.

For more information on relations visit: brainly.com/question/33562447

#SPJ11

We first introduced the concept of the correlation, r, between two quantitative variables in Section 2.5. What is the range of possible values that r can have? Select the best answer from the list below:
a. A value from 0 to 1 (inclusive)
b. Any non-negative value
c. Any value
d. A value from -1 to 1 (inclusive)

Answers

The range of possible values that correlation coefficient, r, between two quantitative variables can have is d. A value from -1 to 1 (inclusive).

A correlation coefficient is a mathematical measure of the degree to which changes in one variable predict changes in another variable. This statistic is used in the field of statistics to measure the strength of a relationship between two variables. The value of the correlation coefficient, r, always lies between -1 and 1 (inclusive).

A correlation coefficient of 1 means that there is a perfect positive relationship between the two variables. A correlation coefficient of -1 means that there is a perfect negative relationship between the two variables. Finally, a correlation coefficient of 0 means that there is no relationship between the two variables.

Learn more about correlation

https://brainly.com/question/30116167

#SPJ11

A satellite is located at a point where two tangents to the equator of the earth intersect. If the two tangents form an angle of about 30 degrees, how wide is the coverage of the satellite?

Answers

In a circle, the angle subtended by a diameter from any point on the circumference is always 90°. The width of the coverage of the satellite is [tex]\frac{1}{12}[/tex] of the circumference of the circle.

The satellite located at the point where two tangents to the equator of the Earth intersect. If the two tangents form an angle of 30 degrees, how wide is the coverage of the satellite?Let AB and CD are the tangents to the equator, meeting at O as shown below: [tex]\angle[/tex]AOB = [tex]\angle[/tex]COD = 90°As O is the center of a circle, and the tangents AB and CD meet at O, the angle AOC = 180°.That implies [tex]\angle[/tex]AOD = 180° - [tex]\angle[/tex]AOC = 180° - 180° = 0°, i.e., the straight line AD is a diameter of the circle.In a circle, the angle subtended by a diameter from any point on the circumference is always 90°.Therefore, [tex]\angle[/tex]AEB = [tex]\angle[/tex]AOF = 90°Here, the straight line EF represents the coverage of the satellite, which subtends an angle at the center of the circle which is 30 degrees, because the two tangents make an angle of 30 degrees. Therefore, in order to find the length of the arc EF, you need to find out what proportion of the full circumference of the circle is 30 degrees. So we have:[tex]\frac{30}{360}[/tex] x [tex]\pi[/tex]r, where r is the radius of the circle.The circumference of the circle = 2[tex]\pi[/tex]r = 360°Therefore, [tex]\frac{30}{360}[/tex] x [tex]\pi[/tex]r = [tex]\frac{1}{12}[/tex] x [tex]\pi[/tex]r.The width of the coverage of the satellite = arc EF = [tex]\frac{1}{12}[/tex] x [tex]\pi[/tex]r. Therefore, the width of the coverage of the satellite is [tex]\frac{1}{12}[/tex] of the circumference of the circle.

Learn more about angle :

https://brainly.com/question/28451077

#SPJ11

find two numbers whose products is 65 if one of the numbers is 3 more than twice the other number

Answers

By quadratic equations, the two numbers when products is 65 if one of the numbers is 3 more than twice the other number are 6.5 and 16.

Let x be one of the numbers and y be the other number. From the problem statement, we know that one of the numbers is 3 more than twice the other number.

So, we can write the following equation: y = 2x + 3

Also, we know that the product of these two numbers is 65. So, we can write another equation:

xy = 65

Now, we can substitute y in terms of x from the first equation into the second equation and get: x(2x + 3) = 65

Simplifying this equation, we get:2x² + 3x - 65 = 0

Now, we can solve this quadratic equation using either factoring or the quadratic formula. Factoring gives: (2x - 13)(x + 5) = 0

So, either 2x - 13 = 0 or x + 5 = 0.

If 2x - 13 = 0, then 2x = 13, and x = 6.5. If x + 5 = 0, then x = -5. However, since we are looking for two positive numbers whose product is 65, we can only use x = 6.5.

Substituting this value of x into y = 2x + 3, we get:y = 2(6.5) + 3 = 16

Therefore, the two numbers whose product is 65 are 6.5 and 16.

To know more about quadratic equations refer here :
https://brainly.com/question/30098550#
#SPJ11

Adele went to the post office. she bought a total of 25 stamps and postcards. Some were 39 cent stamps and the rest 23 cent postcards. if she paid $8.47 all together, how many 39 cent stamps did she buy?

Answers

Adele bought 17 of the 39-cent stamps and 25-17=8 of the 23-cent postcards. We will solve this by using linear equations in one variable.

⇒Let x be the number of 39-cent stamps that Adele bought.

Here, x is the variable.

⇒So the number of 23cent postcards would be 25-x.

We can obtain the following equation: 0.39x + 0.23(25 - x) = 8.47

⇒Simplifying the equation we have: 0.39x + 5.75 - 0.23x = 8.47

⇒Combining like terms we have: 0.16x + 5.75 = 8.47

Subtracting 5.75 from both sides we get: 0.16x = 2.72

⇒Dividing both sides by 0.16 we get, x = 17

Therefore, Adele bought 17 of the 39-cent stamps and 25-17=8 of the 23-cent postcards.

Learn more about linear equations in one variable here: https://brainly.com/question/28555579

#SPJ11

How do you find the slope of a line with two given points?; How do I find the slope in a line?; How do you find slope with 3 points?; What is the slope of the line that passes through these two points 8 4 and 5 3?

Answers

The slope of the line that passes through the points (8, 4) and (5, 3) is 1/3.

To find the slope of a line with two given points, you can use the formula:

slope = (y2 - y1) / (x2 - x1)

Let's take the points (8, 4) and (5, 3) as an example.

1. Identify the coordinates of the two points: (x1, y1) = (8, 4) and (x2, y2) = (5, 3).

2. Substitute the coordinates into the slope formula:

slope = (3 - 4) / (5 - 8)

3. Simplify the equation:

slope = -1 / -3

4. Simplify further by multiplying the numerator and denominator by -1:

slope = 1 / 3

Therefore, the slope of the line that passes through the points (8, 4) and (5, 3) is 1/3.

To find the slope with three points, you would need to use a different method, such as finding the equation of the line and then calculating the slope from that equation. If you provide the three points, I can guide you through the process.

Remember, slope represents the steepness or incline of a line. A positive slope indicates an upward trend, while a negative slope indicates a downward trend. A slope of zero represents a horizontal line, and an undefined slope represents a vertical line.

Learn more about slope:

https://brainly.com/question/3605446

#SPJ11

Roadside Inc's new product would sell for $37.39. Variable cost
of production would be $14.53 per unit. Setting up production would
entail relevant fixed costs of $285,789. The project cannot go
forwa

Answers

The breakeven sales in units, meeting the profit target of 15%, is approximately 12,995.7 units.

To calculate the breakeven sales in units, we need to consider the profit target and the cost structure of the product.

Given:

Selling price per unit = $37.39

Variable cost per unit = $14.53

Fixed costs = $285,789

Return on sales target = 15% = 0.15

To calculate the breakeven sales in units, we can use the following formula:

Breakeven sales (in units) = Fixed costs / (Selling price per unit - Variable cost per unit + Return on sales)

Breakeven sales (in units) = $285,789 / ($37.39 - $14.53 + 0.15)

Breakeven sales (in units) = $285,789 / $22.01

Breakeven sales (in units) ≈ 12,995.73

Rounding to the nearest tenth of a unit, the breakeven sales in units would be approximately 12,995.7 units.

The correct question should be :

Roadside Inc's new product would sell for $37.39. Variable cost of production would be $14.53 per unit. Setting up production would entail relevant fixed costs of $285,789. The project cannot go forward unless the new product would earn a return on sales of 15%. Calculate breakeven sales in UNITS, meeting the profit target. (Rounding: tenth of a unit.)

To learn more about profit visit : https://brainly.com/question/1078746

#SPJ11

Mikko and Jason both commute to work by car. Mikko's commute is 8 km and Jason's is 6 miles. What is the difference in their commute distances when 1mile=1609 meters?
a) 1654meters
b) 3218 meters
c)3.218miles
d)1028 miles
e)1028meters
f) none of the above
g)No answer

Answers

The difference in their commute distances is 1654 meters.

To compare Mikko's commute distance of 8 km to Jason's commute distance of 6 miles, we need to convert one of the distances to the same unit as the other.

Given that 1 mile is equal to 1609 meters, we can convert Jason's commute distance to kilometers:

6 miles * 1609 meters/mile = 9654 meters

Now we can calculate the difference in their commute distances:

Difference = Mikko's distance - Jason's distance

         = 8 km - 9654 meters

To perform the subtraction, we need to convert Mikko's distance to meters:

8 km * 1000 meters/km = 8000 meters

Now we can calculate the difference:

Difference = 8000 meters - 9654 meters

         = -1654 meters

The negative sign indicates that Jason's commute distance is greater than Mikko's commute distance.

Therefore, their commute distances differ by 1654 metres.

Learn more about distance on:

https://brainly.com/question/12356021

#SPJ11

A used piece of rental equipment has 4(1/2) years of useful life remaining. When rented, the equipment brings in $200 per month
(paid at the beginning of the month). If the equipment is sold now and money is worth 4.4%, compounded monthly, what must the selling price be to recoup the income that the rental company loses by selling the equipment "early"?
(a) Decide whether the problem relates to an ordinary annuity or an annuity due.
annuity due
ordinary annuity
(b) Solve the problem. (Round your answer to the nearest cent.)
$=

Answers

The selling price should be $9054.61 to recoup the income that the rental company loses by selling the equipment "early."

a) It is an annuity due problem.

An annuity due is a sequence of payments, made at the start of each period for a fixed period.

For instance, rent on a property, which is usually paid in advance at the start of the month and continues for a set period, is an annuity due.

In an annuity due, each payment is made at the start of the period, and the amount does not change over time since it is an agreed-upon lease agreement.

Now, the selling price can be calculated using the following formula:

[tex]PMT(1 + i)[\frac{1 - (1 + i)^{-n}}{i}][/tex]

Here,

PMT = Monthly

Rent = $200

i = Rate per period

= 4.4% per annum/12

n = Number of Periods

= 4.5 * 12 (since 4 and a half years of useful life are left).

= 54

Substituting the values in the formula, we get:

[tex]$$PMT(1+i)\left[\frac{1-(1+i)^{-n}}{i}\right]$$$$=200(1+0.044/12)\left[\frac{1-(1+0.044/12)^{-54}}{0.044/12}\right]$$$$=200(1.003667)\left[\frac{1-(1.003667)^{-54}}{0.00366667}\right]$$$$= 9054.61$$[/tex]

Therefore, the selling price should be $9054.61 to recoup the income that the rental company loses by selling the equipment "early."

To know more about selling price visit:

https://brainly.com/question/27796445

#SPJ11

The median weight of a boy whose age is between 0 and 38 months can be approximated by the function
w(t)=8.44 + 1.62t-0.005612 +0.00032313
where t is measured in months and wis measured in pounds. Use this approximation to find the following for a
a) The rate of change of weight with respect to time.
w(t)=0.00098912-0.01121+1.62
b) The weight of the baby at age 7 months.
The approximate weight of the baby at age 7 months is

Answers

The rate of change of weight with respect to time is dw/dt = 1.62 - 0.011224t and the approximate weight of the baby at age 7 months is 19.57648 pounds (lb).

a) The rate of change of weight with respect to time:

To find the rate of change of weight with respect to time, we differentiate the function w(t) with respect to t:dw/dt = 1.62 - 0.011224t

The rate of change of weight with respect to time is given by dw/dt = 1.62 - 0.011224t.

b) The weight of the baby at age 7 months.

Substitute t = 7 months in the given function:

w(t)=8.44 + 1.62t-0.005612t^2 + 0.00032313t = 8.44 + 1.62(7) - 0.005612(7)² + 0.00032313w(7) = 19.57648

The approximate weight of the baby at age 7 months is 19.57648 pounds (lb).

Therefore, the rate of change of weight with respect to time is dw/dt = 1.62 - 0.011224t and the approximate weight of the baby at age 7 months is 19.57648 pounds (lb).

To know more about rate of change visit:
brainly.com/question/32590380

#SPJ11

scores are normally distributed with a mean of 100 and a standard deviation of 15 . Use this information to answer the following question. What is the probability that a randomly selected person will have an 1Q score of at most 105 ? Make sure to type in your answer as a decimal rounded to 3 decimal places, For example, if you thought the answer was 0.54321 then you would type in 0.543. Question 22 Astudy was conducted and it found that the mean annual salary for all California residents was $63,783 and the true standard deviation for all California residents was $7,240. Suppose you were to randomly sample 50 California residents. Use this information to answer the following question. What is the probability that the average salary for the 50 individuals in your sample would be at least $64,000? Make sure ta type in your answer as a decimal rounded to 3 decimal places. For example, if you thought the answer was 0.54321 then you would type in 0.543.

Answers

The probability that a person has an 1Q score of at most 105 is 0.630

The probability the average salary is at least $64,000 is 0.488

The probability that a person has an 1Q score of at most 105?

From the question, we have the following parameters that can be used in our computation:

Mean = 100

Standard deviation = 15

So, we have the z-scores to be

z = (105 - 100)/15

z = 0.333

So, the probability is

P = (z ≤ 0.333)

When calculated, we have

P = 0.630

The probability the average salary is at least $64,000

Here, we have

Mean = 63,783

Standard deviation = 7,240

So, we have the z-scores to be

z = (64,000 - 63,783)/7,240

z = 0.030

So, the probability is

P = (z ≥ 0.030)

When calculated, we have

P = 0.488

Read more about probability at

https://brainly.com/question/32182965

#SPJ4

The university expects a proportion of digital exams to be
automatically corrected. Here comes a type of question that you
might then get.
Note! you don't get points here until everything is correct,

Answers

The question that you might get when a university expects a proportion of digital exams to be automatically corrected

Digital exams are graded automatically using special software known as automatic grading software. This software analyzes the exam papers and matches the right answers with the ones given by the student.

The exam software checks the entire exam paper to ensure that the student understands the topic being tested. If the student answers the question correctly, they will earn points. If the student gets the answer wrong, they lose points. The digital exam is graded within a matter of minutes, and students receive their results immediately after the exam.

The use of automatic grading software in universities has become popular because of its accuracy, speed, and efficiency. It saves time and effort, and students can have their grades within a short period.

It also helps reduce the risk of human error, and it is fair to all students because the same standard is used for all exams.

Know more about automatic grading  here:

https://brainly.com/question/30192575

#SPJ11

1. You currently produce cans of tomatoes that are 4 inches in diameter and 8 inches tall, and you produce approximately 900 cans per hour. If you switched to cans that are 6 inches in diameter and 8 inches tall, how many larger cans would be produced in an hour?
2. You have a field with an average yield of 3,500 lbs per acre, and 36% of it is recovered as lint at the gin (turnout). 60% of that lint makes it through processing to become fabric. If it takes 0.5 lbs of fabric to make a T-shirt, how many shirts per acre are you producing? How many shirts per hectare?

Answers

By switching to cans that are 6 inches in diameter, the larger cans would be produced at a different rate. To calculate the number of larger cans produced in an hour, we need to determine the ratio of the volumes of the two cans. Since the height remains the same, the ratio of volumes is simply the ratio of the squares of the diameters (6^2/4^2). Multiplying this ratio by the current production rate of 900 cans per hour gives us the number of larger cans produced in an hour.

To calculate the number of shirts per acre, we need to consider the lint recovered at the gin and the lint that makes it through processing. First, we calculate the lint recovered at the gin by multiplying the average yield per acre (3,500 lbs) by the turnout percentage (36%). Then, we calculate the lint that makes it through processing by multiplying the gin turnout by the processing success rate (60%). Finally, dividing the lint that makes it through processing by the fabric weight per shirt (0.5 lbs) gives us the number of shirts per acre. To convert this value to shirts per hectare, we multiply by the conversion factor (2.471 acres per hectare).

Learn more about number here: brainly.com/question/10547079

#SPJ11


An 8-sided die is rolled 10 times.
a) Calculate the expected sum of the 10 rolls.
b) Calculate the standard deviation for the sum of the 10
rolls.
c) Find the probability that the sum is greater than

Answers

a) The expected sum of 10 rolls on an 8-sided die is 45.

b) The standard deviation for the sum of 10 rolls is approximately 0.906.

c) The probability that the sum is greater than 150 is 0, as the maximum possible sum is 80.

a) To calculate the expected sum of the 10 rolls, we can use the following formula:

Expected value of the sum of the 10 rolls = E(10X) = 10 * E(X) = 10 * 4.5 = 45

So, the expected sum of the 10 rolls is 45.

b) To calculate the standard deviation for the sum of the 10 rolls, we can use the following formula:

σ² = npq

where n = 10, p = probability of getting any number on one roll of an 8-sided die = 1/8, q = probability of not getting any number on one roll of an 8-sided die = 7/8

Therefore,

σ² = 10 * (1/8) * (7/8) = 0.8203125

Thus, the standard deviation for the sum of the 10 rolls is given by:

σ = √0.8203125 = 0.90554 (approx)

Hence, the standard deviation for the sum of the 10 rolls is 0.90554 (approx).

c) Now, we need to find the probability that the sum is greater than 150. Since the die is an 8-sided one, the maximum sum we can get in a single roll is 8. Hence, the maximum sum we can get in 10 rolls is 8 * 10 = 80. Since 150 is greater than 80, P(sum > 150) = 0.

Therefore, the probability that the sum is greater than 150 is 0. Answer: 0.

Learn more about Expected sum

https://brainly.com/question/28197299

#SPJ11

defects. Does this finding support the researcher's claim? Use α=0.01. What is the test statistic? Round-off final answer to three decimal places.

Answers

There is no enough evidence to support the researcher's claim that at least 10% of all football helmets have manufacturing flaws that could potentially cause injury to the wearer, based on this sample of 200 helmets.

The test statistics is -1.414

How to calculate test statistics

To test whether the sample supports the researcher's claim that at least 10% of all football helmets have manufacturing flaws, we will use a one-tailed hypothesis test with a significance level of α=0.01.

Hypotheses:

Null hypothesis (H0) : the proportion of helmets with manufacturing flaws is less than or equal to 10%

H0: p <= 0.1

Alternative hypothesis (Ha): the proportion of helmets with manufacturing flaws is greater than 10%:

Ha: p > 0.1

where p is the true proportion of helmets with manufacturing flaws in the population.

We can use the sample proportion, p-hat, as an estimate of the true proportion, and test whether it is significantly greater than 0.1.

The test statistic for this hypothesis test

[tex]z = (p-hat - p0) / \sqrt(p0*(1-p0)/n)[/tex]

where p0 is the null hypothesis proportion (0.1),

n is the sample size (200), and

p-hat is the sample proportion (16/200 = 0.08).

Substitute for the given values

z = (0.08 - 0.1) / [tex]\sqrt[/tex](0.1*(1-0.1)/200)

= -1.414

From a standard normal distribution table, the p-value associated with this test statistic is

p-value = P(Z > -1.414)

= 0.921

Decision:

Since the p-value (0.921) is greater than the significance level (0.01), we fail to reject the null hypothesis.

Therefore, there is no enough evidence to support the researcher's claim that at least 10% of all football helmets have manufacturing flaws that could potentially cause injury to the wearer, based on this sample of 200 helmets.

Learn more on test statistics on https://brainly.com/question/15110538

#SPJ4

Question is incomplete. Find the complete question below

A researcher claims that at least 10% of all football helmets have manufacturing flaws that could potentially cause injury to the wearer. A sample of 200 helmets revealed that 16 helmets contained such defects. Does this finding support the researcher's claim? Use α=0.01. What is the test statistic? Round-off final answer to three decimal places.

Use synthetic division to find the quotient: (3x^3-7x^2+2x+1)/(x-2)

Answers

The quotient is 3x^2 - x - 2.

To use synthetic division to find the quotient of (3x^3 - 7x^2 + 2x + 1) divided by (x - 2), we set up the synthetic division table as follows:

Copy code

  |   3    -7     2     1

2 |_____________________

First, we write down the coefficients of the dividend (3x^3 - 7x^2 + 2x + 1) in descending order: 3, -7, 2, 1. Then, we bring down the first coefficient, 3, as the first value in the second row.

Next, we multiply the divisor, 2, by the number in the second row and write the result below the next coefficient. Multiply: 2 * 3 = 6.

Copy code

  |   3    -7     2     1

2 | 6

Add the result, 6, to the next coefficient in the first row: -7 + 6 = -1. Write this value in the second row.

Copy code

  |   3    -7     2     1

2 | 6 -1

Again, multiply the divisor, 2, by the number in the second row and write the result below the next coefficient: 2 * (-1) = -2.

Copy code

  |   3    -7     2     1

2 | 6 -1 -2

Add the result, -2, to the next coefficient in the first row: 2 + (-2) = 0. Write this value in the second row.

Copy code

  |   3    -7     2     1

2 | 6 -1 -2 0

The bottom row represents the coefficients of the resulting polynomial after the synthetic division. The first value, 6, is the coefficient of x^2, the second value, -1, is the coefficient of x, and the third value, -2, is the constant term.

Thus, the quotient of (3x^3 - 7x^2 + 2x + 1) divided by (x - 2) is:

3x^2 - x - 2

Therefore, the quotient is 3x^2 - x - 2.

Learn more about quotient  from

https://brainly.com/question/11995925

#SPJ11

A street vendor has a total of 350 short and long sleeve T-shirts. If she sells the short sleeve shirts for $12 each and the long sleeve shirts for $16 each, how many of each did she sell if she sold

Answers

The problem is not solvable as stated, since the number of short sleeve T-shirts sold cannot be larger than the total number of shirts available.

Let x be the number of short sleeve T-shirts sold, and y be the number of long sleeve T-shirts sold. Then we have two equations based on the information given in the problem:

x + y = 350 (equation 1, since the vendor has a total of 350 shirts)

12x + 16y = 5000 (equation 2, since the total revenue from selling x short sleeve shirts and y long sleeve shirts is $5000)

We can use equation 1 to solve for y in terms of x:

y = 350 - x

Substituting this into equation 2, we get:

12x + 16(350 - x) = 5000

Simplifying and solving for x, we get:

4x = 1800

x = 450

Since x represents the number of short sleeve T-shirts sold, and we know that the vendor sold a total of 350 shirts, we can see that x is too large. Therefore, there is no solution to this problem that satisfies the conditions given.

In other words, the problem is not solvable as stated, since the number of short sleeve T-shirts sold cannot be larger than the total number of shirts available.

Learn more about " equations" : https://brainly.com/question/29174899

#SPJ11

Class A has 22 pupils and class B has 9 pupils.
Both classes sit the same maths test.
The mean score for class A is 31.
The mean score for both classes is 42.
What is the mean score (rounded to 2 DP) in the maths test for class B?

Answers

Answer:

that is 9/31=0.2903=0.29

Other Questions
a researcher obtained independent random samples of men from two different towns. she recorded the weights of the men. the results are summarized below: town a town b n 1 Consider a population of insects that consists of juveniles (1 year and under) and adults. Each year,20%of juveniles reproduce and70%of adults reproduce.70%of juveniles survive to adulthood the next year and20%of adults survive the year. The transition matrix for this population is then given byA=[ .2.7.7.2]. (a) Find the eigenvalues ofA. What is the dominant eigenvalue 1(largest absolute value)? (b) Find an eigenvector corresponding to the dominant eigenvalue. (c) Divide your eigenvector by the sum of its entries to find an eigenvectorv 1whose entries sum to one that gives the long term probability distribution. (d) Describe what will happen to the insect population long term based on your longterm growth rate 1and corresponding eigenvectorv 1 one of dean's premises this week is that while most of us think about leadership as a title, we can actually lead without the formal authority of being the boss, the manager, or the founder of the business. which two words describes this? one of dean's premises this week is that while most of us think about leadership as a title, we can actually lead without the formal authority of being the boss, the manager, or the founder of the business. which two words describes this? paid vs volunteer structural vs relational titled vs assumed you are assembling a new computer and are looking at new cooling systems. which of the following cooling systems requires the use of a pump? ellupro, a company that desigrhed and manufactured cell phones, had a unique design to their procucts and a particular celar for their hones and packaging. This design and color is known as Maltiple Choice a service mark trade dresis. a fanciful markic. trade style. when it comes to treating bulimia nervosa, research suggests that group format therapies help as many as _____ percent of clients stop the cycle of binge eating and purging. Your code must begin at memory location x3000.The last instruction executed by your program must be a HALT (TRAP x25).The character to be printed for 0 bits in the font data is located in memory at address x5000.The character to be printed for 1 bits in the font data is located in memory at address x5001.The string to be printed starts at x5002 and ends with a NULL (x00) character.You may assume that you do not need to test if the string to print is too long, but do not make any assumptions on the maximum length of the string.Use a single line feed (x0A) character to end each line printed to the monitor.Your program must use an iterative construct for each line in the output.Your program must use an iteratitive construct for each character in the string to be printed. Remember that a string ends with a NULL (x00) character, which should not be printed to screen.Your program must use an iteratitive construct for each bit to be printed for a given character in the string.You may not make assumptions about the initial contents of any register. That is, make sure to properly initialize the registers that you will use.You may assume that the values stored at x5000 and x5001 and the string are valid extended ASCII characters (x0000 to x00FF).You may use any registers, but we recommend that you avoid using R7.Note that you must print all leading and trailing characters, even if they are not visible on the monitor (as with spaces). Do not try to optimize your output by eliminating trailing spaces because you will make your output different a pair of blue jeans is best associated with which cultural subsystem? how many carbon atoms react in this equation? 2c4h10 13o2-> 8co2 10h20 a new technique to replace diseased organs is harvesting stem cells from the patient's own body and using them to grow a new organ that is then transplanted into the body. in this case: State whether the expression is a polynor so, classify it as either a monomial, a bi or a trinomial. 6x (3)/(x)-x^(2)y -5a^(2)+3a 11a^(2)b^(3) (3)/(x) (10)/(3a^(2)) ,2a^(2)x-7a 5x^(2)y-8xy y^(2)-(y)/( in a speech about the global economy, rachel starts with a story about a local grocery store. she is establishing _______. how your own health beliefs impact the management of one of yourpersonal life stressors. How can the Health Belief Model provideany new insights? What are the definitions of the following words1. Data hierarchy2. Traditional File Environment3. Access Methods4. File-based ApproachQuestion 2What are the Disadvantages of using the DBMS approach over the Traditional File System? V=x^(3)+7x^(2)+10x, where x is the height of the prism. Find linear factors with integer here the length is longer than the width. Sansa's fighter pilot squadron is being deployed to Iraq for five months. She is a ________ type of border dweller.1. voluntary short-term2. voluntary long-term3. involuntary short-term4. involuntary long-term What is the music instrument in Cordillera?. Award: 10.00 pointsUse the unadjusted trial balance of Electric Bike on December 31, 2020.CashAccounts receivablemerchandise InventoryStore suppliesOffice suppliesPrepaid insuranceEquipmentAccumulated depreciation, equipmentAccounts payableSalaries payableBraeden I canitalBraeden Li. withdrawalsInterest incomeSalesSales retums and allowancesvost or codes soldSalanes expenseRent expelsSupplies expenseDeoreciation exoense. equiomentInsurance expenseTotalsDebit8,80023.36535,3002.765845.95582,190Credit14.3558.700181.21565,500380532,5005,770381,86097.00029.800$ 737.150 $737.150Required.1. Record adjusting entries for the following information.The records show that the equioment was estimated to have a total estimated useful life of 10vears with a residual value at the end of its life of s14 100b. The balance in the Prepaid Insurance account was reviewed and it was determined that $290 wasunused at December 31. 2020.c. A review of the store supplies on December 31, 2020, revealed a balance on hand of $2.210: asimilar examination of the office supplies showed that $675 had been used.d. Accrued salaries payable, $2,150e. A count of the merchandise inventory revealed a balance on hand December 31, 2020, of $34,430.2. Prepare a multiple-step income statement showing the expenses in detail.nttps://ezto.mheducaton.com/apucaa/activity/C15Print?wt=eyJnbGaOJSUzi1NJ9.eyJlbnZpcm9ub/VudCloln8yo20LcJocs/.Ol.eno.C/wcmlud1/27/30/22. 7:09 PMReferencesWorksheetLearning Objective:05-05 Define,prepare, and analyzemerchandisingincome statements. what is the most beneficial legislation that has influenced health care for the older adult? Interpret the given equation in terms of relative number of representative particles, numbers of moles, and masses of reactants and products.2K (s) + 2H20 (l)---> 2KOH (aq) + H2 (g)