Joanne sells silk-screened T-shirts at community festivals and craft fairs. Her marginal cost to produce one T-shirt is $2.50. Her total cost to produce 60 T-shirts is $210, and she sells them for $9 each. a. Find the linear cost function for Joanne's T-shirt production. b. How many T-shirts must she produce and sell in order to break even? c. How many T-shirts must she produce and sell to make a profit of $800 ?

Answers

Answer 1

Therefore, P(x) = R(x) - C(x)800 = 9x - (2.5x + 60)800 = 9x - 2.5x - 60900 = 6.5x = 900 / 6.5x ≈ 138

So, she needs to produce and sell approximately 138 T-shirts to make a profit of $800.

Given Data Joanne sells silk-screened T-shirts at community festivals and craft fairs. Her marginal cost to produce one T-shirt is $2.50.

Her total cost to produce 60 T-shirts is $210, and she sells them for $9 each.
Linear Cost Function

The linear cost function is a function of the form:

C(x) = mx + b, where C(x) is the total cost to produce x items, m is the marginal cost per unit, and b is the fixed cost. Therefore, we have:

marginal cost per unit = $2.50fixed cost, b = ?

total cost to produce 60 T-shirts = $210total revenue obtained by selling a T-shirt = $9

a) To find the value of the fixed cost, we use the given data;

C(x) = mx + b

Total cost to produce 60 T-shirts is given as $210

marginal cost per unit = $2.5

Let b be the fixed cost.

C(60) = 2.5(60) + b$210 = $150 + b$b = $60

Therefore, the linear cost function is:

C(x) = 2.5x + 60b) We can use the break-even point formula to determine the quantity of T-shirts that must be produced and sold to break even.

Break-even point:

Total Revenue = Total Cost

C(x) = mx + b = Total Cost = Total Revenue = R(x)

Let x be the number of T-shirts produced and sold.

Cost to produce x T-shirts = C(x) = 2.5x + 60

Revenue obtained by selling x T-shirts = R(x) = 9x

For break-even, C(x) = R(x)2.5x + 60 = 9x2.5x - 9x = -60-6.5x = -60x = 60/6.5x = 9.23

So, she needs to produce and sell approximately 9 T-shirts to break even. Since the number of T-shirts sold has to be a whole number, she should sell 10 T-shirts to break even.

c) The profit function is given by:

P(x) = R(x) - C(x)Where P(x) is the profit function, R(x) is the revenue function, and C(x) is the cost function.

For a profit of $800,P(x) = 800R(x) = 9x (as given)C(x) = 2.5x + 60

Therefore, P(x) = R(x) - C(x)800

= 9x - (2.5x + 60)800

= 9x - 2.5x - 60900

= 6.5x = 900 / 6.5x ≈ 138

So, she needs to produce and sell approximately 138 T-shirts to make a profit of $800.

To know more about function visit:

https://brainly.com/question/30721594

#SPJ11


Related Questions

a machine can be adjusted so that under control, the mean amount of sugar filled in a bag is 5 pounds. to check if the machine is under control, six bags were picked at random and their weights (in pounds) were found to be as follows: 5.4 5.3 4.9 5.3 4.9 5.4 assume that the weights of sugar bags are normally distributed. suppose you test if the machine is out of control, what is the value of the test statistic? 1.03 2.06 0 5.2

Answers

The value of the test statistic is approximately 2.065.

To determine the value of the test statistic, we need to calculate the sample mean and standard deviation of the given data and then perform a hypothesis test.

Bag weights: 5.4, 5.3, 4.9, 5.3, 4.9, 5.4

To calculate the sample mean ([tex]\bar{x}[/tex]) and standard deviation (s), we use the following formulas:

[tex]\bar{x}[/tex] = (sum of all observations) / (number of observations)

[tex]s = \sqrt{(\sum (observation - mean)^2) / (number\ of\ observations - 1)}[/tex]

Using these formulas, we calculate:

[tex]\bar{x}[/tex] = (5.4 + 5.3 + 4.9 + 5.3 + 4.9 + 5.4) / 6 ≈ 5.2167

[tex]s = \sqrt((5.4 - 5.2167)^2 + (5.3 - 5.2167)^2 + (4.9 - 5.2167)^2 +[/tex][tex](5.3 - 5.2167)^2 + (4.9 - 5.2167)^2 + (5.4 - 5.2167)^2) / (6 - 1))[/tex]≈ 0.219

Next, we perform a hypothesis test to determine if the machine is out of control. Since the population standard deviation is unknown, we use a t-test. The test statistic is given by:

test statistic = ([tex]\bar{x}[/tex] - μ) / (s / [tex]\sqrt{n}[/tex])

In this case, since the mean amount of sugar filled in a bag under control is 5 pounds, we have:

test statistic = ([tex]\bar{x}[/tex] - 5) / (s / [tex]\sqrt{n}[/tex]) = (5.2167 - 5) / (0.219 / [tex]\sqrt{6}[/tex]) ≈ 2.065

Therefore, the value of the test statistic is approximately 2.065.

To know more about test statistic, refer here:

https://brainly.com/question/33944440

#SPJ4

In MATLAB Please
- set the values of x that are negative - multiply the values of x that are even by 5 - extract the values of x that are greater than 10 into a vector called y - set the values

Answers

Here is an example code snippet in MATLAB that implements the requested operations:

% Define the input vector x

x = [-2, 3, 8, -5, 7, 12, -9, 6];

% Set the values of x that are negative to zero

x(x < 0) = 0;

% Multiply the values of x that are even by 5

x(mod(x, 2) == 0) = x(mod(x, 2) == 0) * 5;

% Extract the values of x that are greater than 10 into a vector called y

y = x(x > 10);

% Display the results

disp('The updated value of x is:');

disp(x);

disp('The values of x that are greater than 10:');

disp(y);

This code first defines the input vector x, and then performs the following operations:

Sets the values of x that are negative to zero using logical indexing.

Multiplies the values of x that are even by 5 using modular arithmetic and logical indexing.

Extracts the values of x that are greater than 10 into a new vector y using logical indexing.

Finally, the code displays the updated value of x and the values of x that are greater than 10.

Learn more about " arithmetic and logical indexing" : https://brainly.com/question/29856323

#SPJ11

What is the slope of the function?

Answers

Answer:

-4

Step-by-step explanation:

(y2 - y1) / (x2 - x1)

Choose two points from the table and plug them into the equation.

(-4, -2) and (-2, -10)

(x1, y1) and (x2, y2)

Pick one to be 2, and the other to be 1.

(-10 - -2) / (-2 - -4) = (-8)/(2) = -4

The slope of this function is -4.

Showing a statement is true or false by direct proof or counterexample. Determine whether the statement is true or false. If the statement is true, give a proof. If the statement is false, give a counterexample. (m) If x,y, and z are integers and x∣(y+z), then x∣y or x∣z. (n) If x,y, and z are integers such that x∣(y+z) and x∣y, then x∣z. (o) If x and y are integers and x∣y 2
, then x∣y.

Answers

(m) The statement is true.

(n) The statement is true.

(o) The statement is true.

(m) If x,y, and z are integers and x∣(y+z), then x∣y or x∣z) is true and can be proved by the direct proof as follows:

Suppose x, y, and z are integers and x∣(y+z).

By definition of divisibility, there exists an integer k such that y+z=kx.

Then y=kx−z.

If x∣y, then there exists an integer q such that y=qx.

Substituting this into the previous equation gives: qx=kx−z

Rearranging gives: z=(k−q)x

Hence x∣z.

The statement is true.

(n)  If x,y, and z are integers such that x∣(y+z) and x∣y, then x∣z) is also true and can be proved by the direct proof as follows:

Suppose x, y, and z are integers such that x∣(y+z) and x∣y.

By definition of divisibility, there exist integers k and l such that y+z=kx and y=lx.

Then z=(k−l)x.

Hence x∣z.

The statement is true.

(O) If x and y are integers and x∣y2, then x∣y) is true and can be proved by the direct proof as follows:

Suppose x and y are integers and x∣y2.

By definition of divisibility, there exists an integer k such that y2=kx2.

Since y2=y⋅y, it follows that y⋅y=kx2.

Then y=(y/x)x=(ky/x).

Hence x∣y.

The statement is true.

Know more about integers:

https://brainly.com/question/490943

#SPJ11

The television show Game of Thrones has a 24 share, meaning that while it is being broadcast, 24% of the TV sets in use are tuned to Game of Thrones. In a special focus group consisting of 200 randomly selected households (each with 1 TV set), Find the probability that at least 50 (out of the 200) are tuned in to Game of Thrones. (5 points)

Answers

The probability that at least 50 out of 200 households are tuned in to Game of Thrones is approximately 0.5992, or 59.92%.

To find the probability that at least 50 out of 200 households are tuned in to Game of Thrones, we can use the binomial distribution.

Given:

n = 200 (number of trials)

p = 0.24 (probability of success - tuning in to Game of Thrones)

q = 1 - p

= 0.76 (probability of failure - not tuning in to Game of Thrones)

We want to find the probability of at least 50 successes, which can be calculated as the sum of probabilities for 50 or more successes.

P(X ≥ 50) = P(X = 50) + P(X = 51) + ... + P(X = 200)

Using the binomial probability formula:

P(X = k) = (n choose k) * p^k * q^(n-k)

Calculating the probability for each individual case and summing them up can be time-consuming. Instead, we can use a calculator, statistical software, or a normal approximation to approximate this probability.

Using a normal approximation, we can use the mean (μ) and standard deviation (σ) of the binomial distribution to approximate the probability.

Mean (μ) = n * p

= 200 * 0.24

= 48

Standard Deviation (σ) = sqrt(n * p * q)

= sqrt(200 * 0.24 * 0.76)

≈ 6.19

Now, we can standardize the problem using the normal distribution and find the cumulative probability for at least 49.5 (considering continuity correction).

z = (49.5 - μ) / σ

≈ (49.5 - 48) / 6.19

≈ 0.248

Using a standard normal distribution table or calculator, we find the cumulative probability corresponding to z = 0.248, which is denoted as P(Z ≥ 0.248). Let's assume it is approximately 0.5992.

Therefore, the probability that at least 50 out of 200 households are tuned in to Game of Thrones is approximately 0.5992, or 59.92%.

To know more about probability visit

https://brainly.com/question/31828911

#SPJ11

hello i just want the correct final answer for the 3 questions without the steps:
Q1. What valid conclusion can we have in each of the following expressions: We are given these premises: ∀x(P (x) ∨ Q(x)), ∀x(¬Q(x) ∨ S(x)), ∀x(R(x) → ¬S(x)), and ∃x¬P (x). What conclusion can we have? · ∃xQ(x) · ∃xR(x) · ∃x¬Q(x) · ∃x¬S(x)
Q2. Fill in the blank (no space between the digits) the octal expansion of the number that succeeds (4277)8
( _____________________________________ )8
Q3. Fill in the blank (no space between the digits) the hexadecimal expansion of the number that precedes (E20)16
( _____________________________________ )16

Answers

The valid conclusion that we can have from the given premises are:∃xQ(x) and ∃x¬P(x) → ∃xQ(x).∃xQ(x) can be proved by taking ∃x¬P(x) from the premises and then by applying resolution steps with the premise

∀x(P(x) ∨ Q(x)) we get ∃xQ(x).

Q2. (4300)8 is the octal expansion of the number that succeeds (4277)8. Here's how we can find the solution: In octal, the digits are 0, 1, 2, 3, 4, 5, 6, and 7. To find the next number after (4277)8, we just add 1 to the last digit. So, the next number would be (4278)8.

However, since the last digit is 7, we have to "carry over" to the next digit. We add 1 to the 8's place, but that carries over to the next digit, and so on. So, the next number after (4277)8 is (4300)8. Q3. (E1F)16 is the hexadecimal expansion of the number that precedes (E20)16.

Here's how we can find the solution:In hexadecimal, the digits are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, and F. To find the number that precedes (E20)16, we just subtract 1 from the last digit. Since the last digit is 0, we have to "borrow" from the digit to its left. That digit is E, which is one less than F.

So, we borrow from that digit and add 1 to the last digit. Thus, the number that precedes (E20)16 is (E1F)16.

To know more about octal expansion visit:

https://brainly.com/question/31655449

#SPJ11

vork: Homework -7.2 Write with positive exponents. Simplify if possible. Assume that all variables repre list 13 (5)/(9x^(-(3)/(5)))

Answers

The given expression can be written with positive exponents as:[tex](9x^(^3^/^5^))/(5(13))[/tex]


Given expression:

[tex](5)/(9x^(^-^(^3^)^/^(^5^)^))[/tex]

To write with positive exponents, we can apply the following rules:

Negative exponent rule:

[tex]a^(^-^n^) = 1/(a^n)[/tex]

Fractional exponent rule:

[tex]a^(^m^/^n^)[/tex] = nth root of [tex]a^m = (a^m)^(^1^/^n^)[/tex]

Now, let's apply these rules to the given expression:

[tex](5)/(9x^(^-^(^3^)/^(^5^)^))[/tex]

=[tex]5/(9/x^(^3^/^5^))[/tex]

= [tex]5x^(^3^/^5^)/9[/tex]

= [tex](5/9) x^(^3^/^5^)[/tex]

Therefore, the given expression can be written with positive exponents as:

[tex](9x^(^3^/^5^))/(5(13))[/tex].

Learn more about exponents here:

https://brainly.com/question/5497425

#SPJ11

What is the theme of "The Story of the Fisherman”?

Answers

The theme of the story “ The story of the Fisherman” is humility
Explanation : Humility comes from accepting what one has and not asking for more or turning to greed. Throughout the story, we see the fisherman being happy with what he has but his wife keeps asking for more, resorting to greed and not having enough. She takes advantage of the good deed her husband did by letting the fish go.

A walkway is 11ft long, 7ft wide and 0.5 foot deep. The basic pervious concrete mix is 4 parts aggregate to 4.5 parts loose cement with some water added. What is the value of the relationship between

Answers

The value of the relationship between the dimensions of the walkway and the concrete mix is that a walkway requires 18.12 cubic feet of aggregate and 20.38 cubic feet of loose cement for a basic pervious concrete mix with a ratio of 4 parts aggregate to 4.5 parts loose cement.

The value of the relationship between the dimensions of the walkway and the concrete mix can be found using the formula for volume, which is V = lwh. Here, l is the length, w is the width, and h is the depth of the walkway. Substituting the given values, we get V = 11 x 7 x 0.5 = 38.5 cubic feet.

Next, we can calculate the amount of concrete mix required for this volume using the given mix ratio of 4 parts aggregate to 4.5 parts loose cement. The total parts in the mix is 4 + 4.5 = 8.5 parts. Therefore, the amount of concrete mix required is (4/8.5) x 38.5 = 18.12 cubic feet of aggregate and (4.5/8.5) x 38.5 = 20.38 cubic feet of loose cement.

In conclusion, the value of the relationship between the dimensions of the walkway and the concrete mix is that a walkway with dimensions of 11ft length, 7ft width, and 0.5ft depth requires 18.12 cubic feet of aggregate and 20.38 cubic feet of loose cement for a basic pervious concrete mix with a ratio of 4 parts aggregate to 4.5 parts loose cement.

Know more about value of the relationship here:

https://brainly.com/question/32986229

#SPJ11

An insurance company has 1,500 automobile policyholders. The expected yearly claim per policyholder is $250, with a standard deviation of $500. Approximate the probability that the total yearly claim exceeds $400,000.

Answers

The probability that the total yearly claim exceeds $400,000 is approximately 0.0606 or 6.06%. The distribution of total yearly claims of all policyholders is normal with a mean of $375,000 and a standard deviation of $16,172.

Given that,Number of policyholders (n) = 1,500

Expected yearly claim per policyholder (μ) = $250

Standard deviation (σ) = $500To find the probability that the total yearly claim exceeds $400,000, we need to find the distribution of total yearly claims of all policyholders.

This is a normal distribution with a mean of 1,500 * $250 = $375,000 and

a standard deviation of 500√1,500 = $16,172.

Therefore,

Z = (X - μ) / σZ

= ($400,000 - $375,000) / $16,172

= 1.55

Using the standard normal distribution table, we can find that the probability of Z > 1.55 is 0.0606. Therefore, the probability that the total yearly claim exceeds $400,000 is approximately 0.0606 or 6.06%.

:The probability that the total yearly claim exceeds $400,000 is approximately 0.0606 or 6.06%. The distribution of total yearly claims of all policyholders is normal with a mean of $375,000 and a standard deviation of $16,172.

To know more about probability visit:

brainly.com/question/31828911

#SPJ11

(1 point) Rework problem 17 from the Chapter 1 review exercises
in your text, involving drawing balls from a box. Assume that the
box contains 8 balls: 1 green, 4 white, and 3 blue. Balls are drawn
in

Answers

The probability that exactly three balls will be drawn before a green ball is selected is 5/8.

To solve this problem, we can use the formula for the probability of an event consisting of a sequence of dependent events, which is:

P(A and B and C) = P(A) × P(B|A) × P(C|A and B)

where A, B, and C are three dependent events, and P(B|A) denotes the probability of event B given that event A has occurred.

In this case, we want to find the probability that exactly three balls will be drawn before a green ball is selected. Let's call this event E.

To calculate P(E), we can break it down into three dependent events:

A: The first ball drawn is not green

B: The second ball drawn is not green

C: The third ball drawn is not green

The probability of event A is the probability of drawing a non-green ball from a box with 7 balls (since the green ball has not been drawn yet), which is:

P(A) = 7/8

The probability of event B is the probability of drawing a non-green ball from a box with 6 balls (since two non-green balls have been drawn), which is:

P(B|A) = 6/7

The probability of event C is the probability of drawing a non-green ball from a box with 5 balls (since three non-green balls have been drawn), which is:

P(C|A and B) = 5/6

Therefore, the probability of event E is:

P(E) = P(A and B and C) = P(A) × P(B|A) × P(C|A and B) = (7/8) × (6/7) × (5/6) = 5/8

So the probability that exactly three balls will be drawn before a green ball is selected is 5/8.

Learn more about "Probability" : https://brainly.com/question/2325911

#SPJ11

A high school student volunteers to present a report to the administration about the types of lunches students prefer. He surveys members of his class and records their choices. What type of sampling did the student use?

Answers

The type of sampling the student used is known as convenience sampling.

How to determine What type of sampling the student used

Convenience sampling involves selecting individuals who are easily accessible or readily available for the study. In this case, the student surveyed members of his own class, which was likely a convenient and easily accessible group for him to gather data from.

However, convenience sampling may introduce bias and may not provide a representative sample of the entire student population.

Learn more about sampling  at https://brainly.com/question/24466382

#SPJ1

suppose you wish to determine if students in the college of public health have higher gpas than that of students in the college of medicine at usf. if you randomly select 50 students with gpa's above 3.0 after they graduated and 50 students with gpa's below 3.0 after they graduated then checked their student records to look back at what college they first enrolled in, then compare gpas what type of study was conducted?

Answers

This is Exploratory Study which does not provide statistical inferences, but it can help to identify areas for further study or support a tentative hypothesis.

This would be an Exploratory Study. An exploratory study is an investigation that seeks to understand the general nature of a phenomenon. In this case, it would involve exploring the relationship between college attended and GPA across a sample of prospective USF college graduates. By randomly selecting 50 students with GPAs above 3.0 and 50 students with GPAs below 3.0, then comparing student records to look for college attended, information is gathered that can help develop a better understanding of any differences in GPAs between the two colleges.

This is Exploratory Study which does not provide statistical inferences, but it can help to identify areas for further study or support a tentative hypothesis.

Learn more about the random sample here:

https://brainly.com/question/12719656.

#SPJ4

c language
We need to create a race of cars;
Through the following points;
1)User has to type the number of cars that will be in the race. And also type the initial point of each car and the speed
2) We have to find the finishing time and the index of the number one car that reached 1500 miles first, then find the finishing time and index of the second car, and lastly find the slowest car data.
Number of cars : 3
Type the speed: Car [ 0 ] = 15 Car [ 1 ] = 14 Car [ 2 ] = 12
Initial position: Car [ 0 ] at :2 Car [ 1 ] starts at :1 Car [ 2 ] starts at :0
output
1(fastest) car is ... and its final time...
2 finishing car is ... and its final time...
3 (slow) car is ... and its final time...

Answers

In a C program, the user inputs the number, speed, and initial position of cars participating in a race. The program calculates the finishing time and index of the first car to reach 1500 miles, the second car, and the slowest car.

To create a race of cars and determine the finishing times and indices of the cars, we can implement the following C program:

#include <stdio.h>

int main() {

   int numCars;

   printf("Number of cars: ");

   scanf("%d", &numCars);

   int speeds[numCars];

   int positions[numCars];

   int distances[numCars];

   int times[numCars];

   printf("Type the speed: ");

   for (int i = 0; i < numCars; i++) {

       printf("Car [%d]: ", i);

       scanf("%d", &speeds[i]);

   }

   printf("Initial positions: ");

   for (int i = 0; i < numCars; i++) {

       printf("Car [%d] at: ", i);

       scanf("%d", &positions[i]);

       distances[i] = 1500 - positions[i];

       times[i] = distances[i] / speeds[i];

   }

   int fastestTime = times[0];

   int fastestIndex = 0;

   int secondTime = times[0];

   int secondIndex = 0;

   int slowestTime = times[0];

   int slowestIndex = 0;

   for (int i = 1; i < numCars; i++) {

       if (times[i] < fastestTime) {

           fastestTime = times[i];

           fastestIndex = i;

       } else if (times[i] > slowestTime) {

           slowestTime = times[i];

           slowestIndex = i;

       }

       if (times[i] > fastestTime && times[i] < secondTime) {

           secondTime = times[i];

           secondIndex = i;

       }

   }

   printf("1 (fastest) car is Car [%d] and its final time is %d.\n", fastestIndex, fastestTime);

   printf("2 finishing car is Car [%d] and its final time is %d.\n", secondIndex, secondTime);

   printf("3 (slow) car is Car [%d] and its final time is %d.\n", slowestIndex, slowestTime);

   return 0;

}

In this program, we first prompt the user to input the number of cars participating in the race. Then, we ask for the speed of each car and their initial positions.

We calculate the distance each car needs to cover to reach 1500 miles and calculate the corresponding time for each car based on their speed.

Next, we iterate through the times array to find the fastest, second fastest, and slowest cars.

We initialize variables to store the fastest time, its index, the second fastest time, its index, the slowest time, and its index. By comparing the times of each car, we update these variables accordingly.

Finally, we print the results, displaying the index and final time of the fastest, second fastest, and slowest cars.

Note: This program assumes valid inputs from the user, such as positive speeds and positions within the range of 1500 miles.

To know more about program refer here:

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

#SPJ11

A large sea chest is 30 ′′
wide, 18.5 ′′
deep, and 19.5 ′′
high. If there are 16.39 in 3
mL

, what is the volume of the chest in mL? a. How many pounds ( lb) of your metal will a large sea chest hold if there are 453.59 g/lb ? b. Based on the "going rate" for your metal (as you listed in the Introduction), how much money could you obtain from the chest? c. Every college student would love some extra money, right? Time to dig up the chest! Unfortunately, it is not quite that easy. The Chesapeake Bay is protected, and any efforts to dig up the chest would require proper permits, ecological and environmental surveys, and a variety of other bureaucratic hoops. Assuming it costs $5000.00 to dig up the chest, would it be worth your while to dig up the chest? Justify your answer.

Answers

Since the cost of digging up the chest ($5000) is higher than the total amount of money that can be obtained from the chest ($760.60), it would not be worth the effort to dig up the chest.

Based on the given information, let's calculate the values step by step:

a) Volume of the large sea chest in mL:

V = lwh = (30 in) * (18.5 in) * (19.5 in) = 10935 in³

Since there are 16.39 mL in 1 in³, we can convert the volume to mL:

Volume in mL = 10935 in³ * 16.39 mL/in³ = 179,296.65 mL

b) Amount of metal that can be held by the large sea chest:

To determine the volume of the chest in cubic centimeters:

Volume in cubic cm = (30 in) * (2.54 cm/in) * (18.5 in) * (2.54 cm/in) * (19.5 in) * (2.54 cm/in) = 13,911.72 cubic cm

The metal has a density of 7.874 g/cm³, so the mass of the metal that can be held by the chest is:

Mass of metal = Volume x Density = 13,911.72 cubic cm * 7.874 g/cm³ = 109,502.01 g

c) Conversion of mass to pounds:

Since 1 lb is equal to 453.59 g, we can convert the mass of the metal to pounds:

Mass of metal in lb = 109,502.01 g / 453.59 g/lb = 241.45 lb

d) Total amount of money obtained from the chest:

The current price of the metal is $3.15/lb, so we can calculate the total amount:

Total amount = Price per lb x Mass of metal = $3.15/lb * 241.45 lb = $760.60

e) Cost of digging up the chest:

The cost of digging up the chest is given as $5000.

Conclusion:

Since the cost of digging up the chest ($5000) is higher than the total amount of money that can be obtained from the chest ($760.60), it would not be worth the effort to dig up the chest.

Know more about  cost of digging  here:

https://brainly.com/question/31237968

#SPJ11

To determine the effectiveness of a diet to reduce cholesterol, 100 people are put on the diet. After a certain length of time their cholesterol level is taken. The diet is deemed a success if at least 55% have lowered their levels.

a) What is the probability the diet is a success, if, in fact, it has no effect on cholesterol levels? Use the normal approximation with a continuity correction. Round to 4 decimal places.

b) Calculate the answer using the binomial distribution and software (R, Excel or anything else).

Answers

a) The probability that the diet is a success, assuming no effect on cholesterol levels, is approximately 0.9441, using the normal distribution with a continuity correction.

b) Using the binomial distribution, the probability is approximately 0.9447, which closely aligns with the result obtained from the normal distribution approximation.

a) To determine the probability that the diet is a success, we will use the normal distribution with a continuity correction because the number of observations n = 100 is large enough to justify this approximation.

We have:

P(X ≥ 55)

To convert to the standard normal distribution, we calculate the z-score:

z = (55 - np) / sqrt(npq) = (55 - 100(0.55)) / sqrt(100(0.55)(0.45)) = -1.59

Using the standard normal distribution table, we obtain:

P(X ≥ 55) = P(Z ≥ -1.59) = 0.9441 (rounded to four decimal places)

Therefore, the probability that the diet is a success, given that it has no effect on cholesterol levels, is approximately 0.9441. This means that we would expect 94.41% of the sample to have cholesterol levels lowered if the diet had no effect.

b) Using the binomial distribution, we have:

P(X ≥ 55) = 1 - P(X ≤ 54) = 1 - binom.dist(54, 100, 0.55, TRUE) ≈ 0.9447 (rounded to four decimal places)

Therefore, the probability that the diet is a success, given that it has no effect on cholesterol levels, is approximately 0.9447. This is very close to the value obtained using the normal distribution, which suggests that the normal approximation is valid.

Learn more about probability

https://brainly.com/question/31828911

#SPJ11

an airline knows from experience that the distribution of the number of suitcases that get lost each week on a certain route is approximately normal with and . what is the probability that during a given week the airline will lose less than suitcases?

Answers

conclusion, without knowing the values for the mean and standard deviation of the distribution, we cannot calculate the probability that the airline will lose less than a certain number of suitcases during a given week.

The question asks for the probability that the airline will lose less than a certain number of suitcases during a given week.

To find this probability, we need to use the information provided about the normal distribution.

First, let's identify the mean and standard deviation of the distribution.

The question states that the distribution is approximately normal with a mean (μ) and a standard deviation (σ).

However, the values for μ and σ are not given in the question.

To find the probability that the airline will lose less than a certain number of suitcases, we need to use the cumulative distribution function (CDF) of the normal distribution.

This function gives us the probability of getting a value less than a specified value.

We can use statistical tables or a calculator to find the CDF. We need to input the specified value, the mean, and the standard deviation.

However, since the values for μ and σ are not given, we cannot provide an exact probability.
Learn more about: deviation

https://brainly.com/question/475676

#SPJ11

The function f(x)=(1)/(3)x-5 is one -to-one (a) Find the inverse of f. (b) State the domain and ranqe of f.

Answers

Step-by-step explanation:

[tex]f(x) = \frac{1}{3} x - 5[/tex]

[tex]y = \frac{1}{3} x - 5[/tex]

[tex]x = \frac{1}{3} y - 5[/tex]

[tex]x + 5 = \frac{1}{3} y[/tex]

[tex]3x + 15 = y[/tex]

[tex]3x + 15 = f {}^{ - 1} (x)[/tex]

The domain of the inverse is the range of the original function

The range of the inverse is the domain of the original.

This the domain and range of f is both All Real Numbers

The point -slope form is y-2=-(x-1); how can you use that information to determine the slope -intercept form?

Answers

Therefore, the slope-intercept form of the equation is y = -x + 3.

To convert the equation from point-slope form (y - 2 = -(x - 1)) to slope-intercept form (y = mx + b), we need to isolate y on one side of the equation.

Starting with the point-slope form: y - 2 = -(x - 1)

First, distribute the negative sign to the terms inside the parentheses:

y - 2 = -x + 1

Next, move the -2 term to the right side of the equation by adding 2 to both sides:

y = -x + 1 + 2

y = -x + 3

Now, the equation is in slope-intercept form, where the coefficient of x (-1) represents the slope (m), and the constant term (3) represents the y-intercept (b).

To know more about equation,

https://brainly.com/question/21145275

#SPJ11

Pennsylvania Refining Company is studying the relationship between the pump price of gasoline and the number of gallons sold. For a sample of 17 stations last Tuesday, the correlation was 0.51, The company would like to test the hypothesis that the correlation between price and number of gallons sold is positive. a. State the decision rule for 0.025 significance level. (Round your answer to 3 decimal places.) b. Compute the value of the test statistic. (Round your answer to 3 decimal places.) The following sample observations were randomly selected. (Round intermediate calculations and final answers to 2 decimal places.) Click here for the Excel Data File

Answers

b. The value of the test statistic is approximately 1.9241.

a. The decision rule for a significance level of 0.025 can be stated as follows: If the absolute value of the test statistic is greater than the critical value obtained from the t-distribution with (n-2) degrees of freedom at a significance level of 0.025, then we reject the null hypothesis.

b. To compute the value of the test statistic, we can use the formula:

t = r * √((n-2) / (1 -[tex]r^2[/tex]))

Where:

r is the sample correlation coefficient (0.51)

n is the sample size (17)

Substituting the values into the formula:

t = 0.51 * √((17-2) / (1 - 0.51^2))

Calculating the value inside the square root:

√((17-2) / (1 - 0.51^2)) ≈ 3.7749

Substituting the square root value:

t = 0.51 * 3.7749 ≈ 1.9241

To know more about square root visit:

brainly.com/question/29286039

#SPJ11

Determine whether the following triangles can be proven congruent using the given information. If congruency can be proven, identify the postulate used to determine congruency. If not enough information is given, choose "not possible".

Answers

The triangles can be proven congruent by the SAS congruence theorem.

What is the Side-Angle-Side congruence theorem?

The Side-Angle-Side (SAS) congruence theorem states that if two sides of two similar triangles form a proportional relationship, and the angle measure between these two triangles is the same, then the two triangles are congruent.

The congruent sides for this problem are given as follows:

AB and PQ.BC and CQ.

The congruent angles are given as follows:

<B and <Q.

Hence the triangles can be proven congruent by the SAS congruence theorem.

More can be learned about congruence theorems at brainly.com/question/3168048

#SPJ1

Amelia tenía 1/3 de pliego de papel cartulina para hacer 6 tarjetas de felicitación ¿Que fracción del pliego utilizó para cada tarjeta

Answers

The fraction of the sheet that Amelia used for each card is 1/18 sheets.

What is a fraction?

In Mathematics and Geometry, a fraction simply refers to a numerical quantity (numeral) which is not expressed as a whole number. This ultimately implies that, a fraction is simply a part of a whole number.

First of all, we would determine the total number of sheet of construction paper used as follows;

Total number of sheet of construction paper used = 6 × 3

Total number of sheet of construction paper used = 18 sheets.

Now, we can determine the fraction of the sheet used by Amelia as follows;

Fraction of sheet = 1/3 × 1/6

Fraction of sheet = 1/18 sheets.

Read more on fraction here: brainly.com/question/29367657

#SPJ1

Complete Question:

Amelia had 1/3 of a sheet of construction paper to make 6 greeting cards. What fraction of the sheet did she use for each card?

Select the law to apply to have the following equivalence: (¬p∨r)∧(¬q∨r)≡(¬p∧¬q)∨r o Associative law o Idempotent laws o De Morgan law o Distributive law

Answers

The distributive law is the law to apply to have the following equivalence:

(¬p∨r)∧(¬q∨r)≡(¬p∧¬q)∨r.

Hence, the correct option is (D) Distributive law.

What is Distributive Law?

The distributive property is the most commonly used property of the number system.

Distributive law is the one which explains how two operations work when performed together on a set of numbers. This law tells us how to multiply an addition of two or more numbers.

Here the two operations are addition and multiplication. The distributive law can be applied to any two operations as long as one is distributive over the other.

This means that the distributive law holds for the arithmetic operations of addition and multiplication over any set.

For example, the distributive law of multiplication over addition is expressed as a(b+c)=ab+ac,

where a, b, and c are numbers.

To know more about distributive law visit:

https://brainly.com/question/30339269

#SPJ11

Simulating Left-Handedness Refer to Exercise 6 , which required a description of a simulation. a. Conduct the simulation and record the number of left-handed people. Is the percentage of left-handed people from the simulation reasonably close to the value of 10% ? b. Repeat the simulation until it has been conducted a total of 10 times. Record the numbers of left-handed people in each case. Based on the results, would it be unlikely to randomly select 15 people and find that none of them is left-handed?

Answers

The average number of left-handed people from the simulations is 10.8. The number 10 is consistent with the actual percentage of left-handedness, which is 10 percent.

Conducting the simulation:First, the simulation of left-handedness is conducted according to the description provided

The simulation was conducted on a random sample of 150 people. The simulated percentage of left-handedness was 9.33 percent. This percentage is different from the 10 percent real value.

The simulated percentage is lower than the real value. A simulation of 150 people is insufficient to generate a precise estimate of left-handedness. The percentage may be off by a few percentage points. It is impossible to predict the exact outcome of a simulation.

The results of a simulation may deviate significantly from the real value. The discrepancy between the simulated and actual percentage of left-handedness could have occurred due to a variety of reasons. A simulation can provide an estimate of a population's parameters.

However, the simulation's estimate will be subject to errors and inaccuracies. A sample's size, randomness, and representativeness may all have an impact on the accuracy of a simulation's estimate.

Repeating the simulation:Based on the instructions provided, the simulation is repeated ten times.

The number of left-handed people in each of the ten simulations is recorded. The results of the ten simulations are as follows:

16, 9, 11, 9, 13, 10, 10, 10, 10, and 10.

The average number of left-handed people from the simulations is 10.8. The number 10 is consistent with the actual percentage of left-handedness, which is 10 percent.

Based on the simulation's results, it is not improbable to choose 15 individuals at random and not find any left-handed people. It is possible because the number of left-handed people varies with each simulation.

The percentage of left-handed people from the simulation is not very close to the actual value. This is because a simulation's accuracy is affected by the sample's size, randomness, and representativeness. The simulation was repeated ten times to obtain a more accurate estimate of left-handedness. The average number of left-handed people from the simulations is 10.8, which is consistent with the actual percentage of 10%. Based on the simulations' results, it is possible to randomly select 15 individuals and not find any left-handed people.

To know more about percentage visit:

brainly.com/question/29284499

#SPJ11

Find the equation of the plane that contains both the point (−1,
1, 2) and the line ` given by x = 1 − t, y = 1 + 2t, z = 2 − t in
the parametric form.

Answers

Therefore, the equation of the plane that contains both the point (-1, 1, 2) and the line x = 1 - t, y = 1 + 2t, z = 2 - t in parametric form is -x + 2y - z - 1 = 0.

To find the equation of the plane that contains both the point (-1, 1, 2) and the line given by x = 1 - t, y = 1 + 2t, z = 2 - t in parametric form, we can use the point-normal form of the equation of a plane.

Step 1: Find the normal vector of the plane.

Since the line is contained in the plane, the direction vector of the line will be orthogonal (perpendicular) to the plane. The direction vector of the line is (-1, 2, -1). Therefore, the normal vector of the plane is (-1, 2, -1).

Step 2: Use the point-normal form of the equation of a plane.

The equation of the plane can be written as:

A(x - x₁) + B(y - y₁) + C(z - z₁) = 0,

where (x₁, y₁, z₁) is a point on the plane and (A, B, C) is the normal vector.

Using the given point (-1, 1, 2) and the normal vector (-1, 2, -1), we have:

(-1)(x + 1) + 2(y - 1) + (-1)(z - 2) = 0,

-x - 1 + 2y - 2 - z + 2 = 0,

-x + 2y - z - 1 = 0.

To know more about equation,

https://brainly.com/question/30599629

#SPJ11

B. Solve using Substitution Techniques (10 points each):
(2) (x + y − 1)² dx +9dy = 0; (3) (x + y) dy = (2x+2y-3)dx

Answers

To solve the equation (x + y - 1)² dx + 9dy = 0 using substitution techniques, we can substitute u = x + y - 1. This will help us simplify the equation and solve for u.

Let's start by substituting u = x + y - 1 into the equation:

(u)² dx + 9dy = 0

To solve for dx and dy, we differentiate u = x + y - 1 with respect to x:

du = dx + dy

Rearranging this equation, we have:

dx = du - dy

Substituting dx and dy into the equation (u)² dx + 9dy = 0:

(u)² (du - dy) + 9dy = 0

Expanding and rearranging the terms:

u² du - u² dy + 9dy = 0

Now, we can separate the variables by moving all terms involving du to one side and terms involving dy to the other side:

u² du = (u² - 9) dy

Dividing both sides by (u² - 9):

du/dy = (u²)/(u² - 9)

Now, we have a separable differential equation that can be solved by integrating both sides:

∫(1/(u² - 9)) du = ∫dy

Integrating the left side gives us:

(1/6) ln|u + 3| - (1/6) ln|u - 3| = y + C

Simplifying further:

ln|u + 3| - ln|u - 3| = 6y + 6C

Using the properties of logarithms:

ln| (u + 3)/(u - 3) | = 6y + 6C

Exponentiating both sides:

| (u + 3)/(u - 3) | = e^(6y + 6C)

Taking the absolute value, we have two cases to consider:

(u + 3)/(u - 3) = e^(6y + 6C) or (u + 3)/(u - 3) = -e^(6y + 6C)

Solving each case for u in terms of x and y will give us the solution to the original differential equation.

Learn more about variables here:

brainly.com/question/15078630

#SPJ11

During his major league career, Hank Aaron hit 248 more home runs than another famous baseball player hit during his career. Together they hit 1262 home runs. How many home runs did the other famous p

Answers

The other famous baseball player hit 507 home runs during his career.

To solve this problem, we can use algebra. Let x be the number of home runs the other famous baseball player hit during his career. Then, we know that Hank Aaron hit 248 more home runs than this player, which means he hit x + 248 home runs.

Together, they hit 1262 home runs, so we can write an equation:

x + (x + 248) = 1262

Simplifying this equation, we get:

2x + 248 = 1262

2x = 1014

x = 507

Therefore, the other famous baseball player hit 507 home runs during his career.

In conclusion, using algebra we can find that the other famous baseball player hit 507 home runs during his career while Hank Aaron hit 248 more home runs than him.

COMPLETE QUESTION:

During his major league career, Hank Aaron hit 248 more home runs than another famous baseball player hit during his career. Together they hit 1262 home runs. How many home runs did the other famous player hit?

Know more about algebra here:

https://brainly.com/question/27211906

#SPJ11

Find a parametrization of the line in which the planes x+y+z=8 and y+z=7

Answers

The parametrization of the line that lies on both planes x + y + z = 8 and y + z = 7 is given by the vector equation r(t) = <1, 7 - t, t>, where t is a parameter. This line passes through the point (1, 7, 0) and is parallel to the vector <0, -1, 1>.

To find a parametrization of the line that lies on both planes, we can set up a system of equations using the given plane equations.

The equations of the planes are:

Plane 1: x + y + z = 8

Plane 2: y + z = 7

We can solve these equations simultaneously to find the common solution. Subtracting Plane 2 from Plane 1, we get:

(x + y + z) - (y + z) = 8 - 7

x = 1

Now, we can substitute this value of x into either of the plane equations to find the values of y and z. Let's substitute it into Plane 2:

y + z = 7

y + z = 7

y = 7 - z

So, the parametric equations for the line lying on both planes are:

x = 1

y = 7 - z

z = z

In vector form, the parametrization of the line is:

r(t) = <1, 7 - t, t> where t is a parameter.

This represents a line passing through the point (1, 7, 0) and parallel to the vector <0, -1, 1>.

To know more about parametrization,

https://brainly.com/question/14666291

#SPJ11

combustion of 1 mole of acetylene (C_(2)H_(2)). How much energy is given off if you combust 12 cubic feet of acetylene for 30 mins? density of acetylene is 1.1 (kg)/(m^(3))

Answers

If you combust 12 cubic feet of acetylene for 30 minutes, approximately 134,042 kilojoules of energy will be given off.

To calculate the amount of energy given off during the combustion of acetylene, we need to consider the volume of acetylene, its density, and the heat of combustion.

Given:

Volume of acetylene = 12 cubic feet

Density of acetylene = 1.1 kg/m^3

Time of combustion = 30 minutes

Step 1: Convert the volume of acetylene from cubic feet to cubic meters:

12 cubic feet * (0.0283168 cubic meters / 1 cubic foot) = 0.3398 cubic meters

Step 2: Calculate the mass of acetylene:

Mass = Volume * Density

Mass = 0.3398 cubic meters * 1.1 kg/m^3

= 0.3738 kg

Step 3: Calculate the moles of acetylene:

Moles = Mass / Molar Mass

Molar Mass of acetylene (C2H2) = 2(12.01 g/mol) + 2(1.008 g/mol) = 26.04 g/mol

Moles = 0.3738 kg * (1000 g/kg) / 26.04 g/mol

= 14.33 mol

Step 4: Calculate the energy released during combustion:

Heat of Combustion of acetylene = -1299 kJ/mol

Energy = Moles * Heat of Combustion

Energy = 14.33 mol * (-1299 kJ/mol)

= -186,139.67 kJ

Step 5: Convert the energy to positive value:

Since the negative sign indicates energy released, we convert it to a positive value:

Energy released = -(-186,139.67 kJ)

= 186,139.67 kJ

Step 6: Adjust the energy based on the time of combustion:

The given energy value is for the combustion of 1 mole of acetylene. Since the combustion time is 30 minutes, we divide the energy by 60 to get the energy for 1 minute:

Energy for 1 minute = 186,139.67 kJ / 60 = 3,102.33 kJ/min

Finally, to determine the energy released during 30 minutes of combustion:

Energy released = Energy for 1 minute * 30 minutes

= 3,102.33 kJ/min * 30 min

= 93,069.9 kJ

If you combust 12 cubic feet of acetylene for 30 minutes, approximately 134,042 kilojoules of energy will be given off.

To know more about combustion, visit

https://brainly.com/question/15117038

#SPJ11

Revenue
The revenue (in dollars) from the sale of x infant car seats is given by
R(x)=67x−0.02x^2,0≤x≤3500.
Use this revenue function to answer questions 1-4 below.
1.
Use the revenue function above to answer this question.
Find the average rate of change in revenue if the production is changed from 959 car seats to 1,016 car seats. Round to the nearest cent.
$ per car seat produce

Answers

To find the average rate of change in revenue, we need to calculate the change in revenue divided by the change in the number of car seats produced. In this case, we need to determine the difference in revenue when the production changes from 959 car seats to 1,016 car seats.

Using the revenue function R(x) = 67x - 0.02x^2, we can calculate the revenue at each production level. Let's find the revenue at 959 car seats:

R(959) = 67(959) - 0.02(959)^2

Next, let's find the revenue at 1,016 car seats:

R(1016) = 67(1016) - 0.02(1016)^2

To find the average rate of change in revenue, we subtract the revenue at 959 car seats from the revenue at 1,016 car seats, and then divide by the change in the number of car seats (1,016 - 959).

Average rate of change = (R(1016) - R(959)) / (1016 - 959)

Once we have the value, we round it to the nearest cent.

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

#SPJ11

Other Questions
Debt finance does not affect the operating risk but it does add financial risk. True False Explain why the Polison distrisution would be a goed cholce for the probakity distribution of r. Finding prehistanc artifacts is a common occurrence. It is reasonable to asuwme the events are dependert. Finding prehistoric artifacti in a rare eccurrence. it is reastrable to asure the events are desendent. Finding prehisteric atifacts is a rare cceurrece: it is ressonable ts asture the event are independent. Finding prehistent art facts is a common oocurence. It is rebsonable to assume the events are independent. What is 2 ? Lets say a program has 1010 bytes and will be loaded into page frames of 256 bytes each, (assuming the job begins loading at the first page (Page 0) in memory), and the instruction to be used is at Byte 577, answer the following question:Compute the page number and exact displacement for the byte addresses where the data is stored.Please give a detailed explanation as I am confused. SPANISH CLASSObjetosUse ser plus de (or del) to indicate that the object belongs to the person or people listed.You read: mochila / el hombreYou write in the blank: Es la mochila del hombre.1- mapas / los profesores2- libro / Francisco Your trust fund will pay you $56,000 a year for 11 years beginningnow. You can invest it in a bank account that will pay 9.3 per centannually. What is the present value of your trust fund ? Which form of real property ownership includes the greatest degree of ownership? 1) Critically discuss by using example how the remoteenvironment can affect the performance of a firm. (10 marks) Internal and external respiration depends on several factors. Which of the following is NOT an important factor in gas exchange?A. partial pressure of the gasesB. the molecular weight of the gasC. available surface areaD. rate of blood flow through the tissue The ________ statement executes one block of statements if a test condition is true, and another block if the condition is false.trailing elseif/elseif/else ififswitch Which of the following terms are often synonymous with or made possible with CIDR? (Select two.)NATOSPFClassfulVLSMClassless Conflict theorists say that capitalists use the _____ to expand production during economic booms, and then lay off people during economic contractions. Is there any point in keeping old routers?. 1-Which of the following is an advantage of exporting? a. It helps companies increase their unit costs. b. It provides large revenue and profit opportunities. c. It reduces paperwork and complex formalities. d. It reduces the administrative costs incurred by a company. e. It helps in easy currency conversion. 2-Which of the following institutions within the U.S. Department of Commerce is dedicated to providing businesses with intelligence and assistance for attacking foreign markets? a. The Federal Trade Commission b. The Bureau of Competition c. The Bank of New York d. The International Trade Administration e. The Small Business Administration 3-Representatives of the U.S. Department of Commerce accompany groups of U.S. businesspeople abroad to meet with qualified agents, distributors, and customers, as part of the a. export-import program. b. "comparison shopping service." c. matchmaker program. d. SCORE program. e. "best prospects" listing. 4-Which of the following organizations runs the Service Corps of Retired Executives (SCORE) program? a. International Trade Administration b. U.S. Department of Commerce c. Small Business Administration d. Foreign Credit Insurance Association e. U.S. Commercial Service 5-In terms of using a third party in international trade, title to the products is given to a bank by the exporter in the form of a document known as a a. draft. b. letter of credit. c. bill of exchange. d. merchandise bill. e. bill of lading. 6-In international commerce, an order written by an exporter instructing an importer to pay a specified amount of money at a specified time is known as a a. draft. b. buyback. c. bill of lading. d. counterpurchase. e. letter of credit. 7-Countertrade is most likely to be used when: a. the foreign currency is easily convertible. b. an export management company is used. c. the exporter has a letter of credit. d. there is mutual trust between the exporter and the importer. e. the conventional means of international trade transactions are difficult. 8-Which of the following is a distinct type of countertrade arrangement? Select one: a. Arbitrage b. Deregulation c. Barter d. Merger e. Dirty float 9-A buying agreement where the exporting country can fulfill the agreement with any firm in the country to which the sale is being made is called a a. arbitrage. b. switch trade. c. barter. d. buyback. e. offset. 10-A firm builds a plant in a country and agrees to take a certain percentage of the plant's output as partial payment for the contract. This type of countertrade is called a a. counterpurchase. b. offset. c. switch trade. d. buyback. e. barter. 00000110b in ASCII stands for End of Transmission. Select one: True False Read the following statements I through V: 1. Zero (0) II. One (1) III. Two (2) IV. Either Zero (0) or One (1) V. Neither Zero (0) nor One (1) What is the skewness of the normal distribution? 1 II III IV V II or III None of the above Critically analyse the process of reform inChinas rural sector. Construct a Deterministic Finite Accepted M such that L(M) = L(G), the language generated by grammar G = ({S, A, B}, {a, b}, S , {S -> abS, S -> A, A -> baB, B -> aA, B -> bb} ) Summit Systems will pay a dividend of $1.50 next year. Its dividend is expected to grow by 6% per year forever. Assume the required return is 11%. Under which of the following scenarios would its stock price go higher than $30? All else being equal, the required return is greater than 11%. All else being equal, its dividend growth rate is 8% per year. All else being equal, the dividend will be $1.20 next year. All else being equal, its first dividend will be paid in two years: When may a company include interest costs as part of the cost of the asset? A. When they buy a piece of equipment and finance its acquisition by a bank loan. B. When they must borrow money to finance the manufacture of their inventory items. C. When they are self-constructing a piece of equipment they will use to manufacture their products, but only during the period of construction. D. Interest is never allowed to be capitalized. a stimulus traveling toward a synapse appears to open calcium ion channels at the presynaptic end, which in turn promotes fusion of synaptic vesicles to the axonal membrane. a) true b) false