a stereo is marked down $75. If this is a 15% decrease find the sale price. How do you work this problem out?

Answers

Answer 1
You can do a proportion: 75/15 = x/100
you then do 100x75 and the divide by 15 and get 500. 
15% of $500 is $75 so the sale price would be $425 I believe. 
Answer 2

Answer:

The selling price is $425.

Step-by-step explanation:

Given information:

Marked down price = $75

15% decrease = $75

Let x be the market price.

[tex]x\times \frac{15}{100}=75[/tex]

[tex]0.15x=75[/tex]

Divide both sides by 0.15.

[tex]x=500[/tex]

The market price is $500.

Selling price = Market price - Marked down

Selling price = $500 - $75

Selling price = $425

Therefore, the selling price is $425.


Related Questions

What is the probability that a couple will have a girl a boy a girl and a boy in this specific order?

Answers

P(boy)=1/2
P(girl)=1/2
P(a girl, a boy , a girl and a boy)=1/2*1/2*1/2*1/2= 1/16
P(2 boys and 2 girls ) = 1/[4!/(2!*2!)] =1/6

hope this helps u

The probability that a couple will have a girl a boy a girl and a boy in this specific order is 1/16

Probability is the likelihood or chance that an event will occur.

Probability = Expected outcome/Total outcome

If the couple will give birth to a boy and a girl, hence the total outcome of the event is 2

Pr(having a boy) = 1/2

Pr(having a girl) = 1/2

Pr(a girl, a boy, a girl and a boy) = 1/2 * 1/2 *1/2 * 1/2

Pr(a girl, a boy, a girl, and a boy) = 1/16

Hence the probability that a couple will have a girl a boy a girl and a boy in this specific order is 1/16

Learn more probability here: https://brainly.com/question/13604758


Ex 9-9 Straight-line depreciation ObJ. 2

A refrigerator used by a meat processor has a cost of $48,000, an estimated residual value of $9,000, and an estimated useful life of 15 years. What is the amount of the annual depreciation computed by the straight-line method?








Answers

Depreciation = (Cost - Residual)/Useful Life
Cost = $48,000
Residual = $9,000
Useful Life = 15 years

Depreciation = (48,000-9,000)/15
Depreciation = 39,000/15
Depreciation = $2,600

The refrigerator will depreciate at $2,600 a year.

The annual depreciation expense for the meat processor's refrigerator, using the straight-line method, is $2,600.

Straight-line Depreciation Calculation

The straight-line depreciation method spreads the cost of an asset evenly over its useful life. To calculate the annual depreciation expense for the refrigerator, we follow this formula: (Cost of the asset - Residual value) / Estimated useful life.

In this case, the numbers provided are a cost of $48,000, a residual value of $9,000, and an estimated useful life of 15 years. Using these values, the calculation is as follows:

(48,000 - 9,000) / 15 = 39,000 / 15 = $2,600 per year.

Therefore, the annual depreciation expense that the meat processor would record for this refrigerator is $2,600.

Solve the equation by factoring. (Enter your answers as a comma-separated list. Let k be any integer. Round terms to three decimal places where appropriate. If there is no solution, enter NO SOLUTION.) 4 sin(θ) cos(θ) + 2 sin(θ) − 2 cos(θ) − 1 = 0

Answers

let the k be any integer. rounds terms to three decimal places where appropriate 4-0-0+2-2-1=0 I think its 3

Jeremy can type 140 words in 4 minutes and 525 words in 15 minutes. Let x= minutes spent typing and y= words typed. what is the rate of change of y with respect to x

Answers

Final answer:

The rate of change of y with respect to x is 35 words per minute.

Explanation:

The rate of change of y with respect to x can be found by taking the slope of the line that represents the relationship between x and y. To find the slope, we can use the formula:

slope = change in y / change in x

Using the given information, we can calculate the slope as:

slope = (525 - 140) / (15 - 4) = 385 / 11 = 35

Therefore, the rate of change of y with respect to x is 35 words per minute.

Final answer:

Jeremy's rate of change in typing speed is 35 words per minute, calculated by dividing the change in words typed by the change in time (385 words/11 minutes).

Explanation:

The student is asking about the rate of change of the words typed with respect to time spent typing. To calculate this, we will use the given values: 140 words in 4 minutes and 525 words in 15 minutes. The rate of change, essentially being the slope of the line that represents the relationship between words typed (y) and the time (x), can be calculated by finding the ratio of the change in words to the change in time:

Firstly, calculate the change in words typed (Δy) which is 525 - 140 = 385 words.Then, calculate the change in time (Δx) which is 15 - 4 = 11 minutes.The rate of change (slope) is Δy/Δx which equals 385 words / 11 minutes = 35 words per minute.

This means that Jeremy types at an average speed of 35 words per minute.

A real estate agent sells a house for $92,000. She receives a 6% commission on the sale of the house.

How much did she earn on the sale?

Round your answer to the nearest cent.

need answer in 10 mins. or less

Answers

Okay so just do this equation below.


92,000 x 0.06

And you have your answer!

Answer is 5,520.

Leave a 5 star rating, a thanks, and a most brainy answer!

Amount earn as commission on real state building is $5,520

Commission based problem:

What information do we have?

Amount of real state house = $92,000

Percentage of Commission on sale = 6%

Amount earn as commission = Amount of real state house × Percentage of Commission on sale

Amount earn as commission = 92,000 × 6%

Amount earn as commission = 92,000 × 0.06

Amount earn as commission = $5,520

Find out more information about 'Commission'.

https://brainly.com/question/929522?referrer=searchResults


Find a trivial lower-bound class for each of the following problems and indicate, if you can, whether this bound is tight.
a. finding the largest element in an array
b. checking completeness of a graph represented by its adjacency matrix
c. generating all the subsets of an n-element set
d. determining whether n given real numbers are all distinct

Answers

Final answer:

The trivial lower-bound classes for the problems provided include O(n) for finding the largest element in an array, O(n^2) for graph completeness, O(2^n) for subset generation, and O(n log n) for distinctness checking. Some of these bounds are tight, such as O(n) and O(2^n), while others may not be.

Explanation:

For each of the following problems, we can establish a trivial lower-bound class and discuss whether it is tight:

Finding the largest element in an array: The trivial lower-bound class is O(n), as we must inspect each element at least once. This bound is tight because it's not possible to determine the largest element without looking at all elements.Checking completeness of a graph represented by its adjacency matrix: The trivial lower-bound class is O(n2), since we must examine all n2 possible edges for an n-vertex graph. However, this is not tight because we could determine non-completeness before examining all edges if a missing edge is found.Generating all the subsets of an n-element set: The lower-bound class is O(2n), because there are 2n possible subsets. This is a tight bound since we cannot generate less than all possible subsets.Determining whether n given real numbers are all distinct: The trivial lower-bound class is O(n log n), assuming we sort and then do a linear scan for duplicates. It might not be tight since there may be a method to do it in linear time, but it's unknown.

in a school election 3/4 of the students vote. There are 1464 ballots. write and solve an equation to find the number of students.

PLEASE HELP ;(

Answers

Hey there! Hello!

So, for this problem, we need to find the missing fourth of the total amount of students. We have three fourths already, represented by 1464.

If 1464 is three parts of four, all we need to do is divide the number by 3 to get 488. This represents 25% of the total number of students, or the remaining 1/4. 

If you add 488 to 1464, you get 1952. This represents the total number of students. You can check by multiplying 1464 by 0.25, yielding 488. 

Hope this helped you out! Feel free to ask any additional questions if you need further clarification. :-)

This is a mathematical sentence written with a greater than, a less than sign, or a NOT equal to sign.

Answers

The mathematical  sentence written with a greater than, a less than sign, or a not equal sign is know as Inequality.

What is Inequality?

Inequalities are mathematical formulas in which neither side is equal. Unlike equations, we compare two values in inequality. In between, the equal sign is substituted by a less than (or less than or equal to), greater than (or greater than or equal to), or not equal to sign.

As, the mathematical  sentence written with a greater than, a less than sign, or a not equal sign.

The definition of inequality is that two things are NOT equal. One of the items could be less than, greater than, less than or equal to the other things, or greater than or equal to the other things.

So, the statement is Inequality statement.

Learn more about Inequality here:

https://brainly.com/question/30231190

#SPJ3

Find MF if M is the midpoint of CF for the points C(3,7)F(5,5)

Answers

I hope this helps you

A comic book costs $3.99, including tax. It is marked up 45%.

What is the final price of the comic book after it is marked up?

Answers

5.79


3.99 x .45 = 1.7955 = 1.80


3.99 + 1.80 = 5.79

4,032 divided by 79 = ------

Answers

51.03797468

No calculator
51.0379746835443 that is the answer or 55R72

A certain radioactive isotope has leaked into a small stream. Four
hundred days after the​ leak, 13% of the original amount of the substance remained. Determine the​ half-life of this radioactive isotope.

Answers

The​ half-life of this radioactive isotope is 135.897 days and this can be determined by using the formula of half-life.

Given :

A certain radioactive isotope has leaked into a small stream.Four  hundred days after the​ leak, 13% of the original amount of the substance remained.

The formula of the half-life is given by:

[tex]\rm A =P \left(\dfrac{1}{2} \right)^{\dfrac{t}{t_{1/2}}}[/tex]

where A is the final concentration, P is the initial concentration, t is the time period, and [tex]\rm t_{1/2}[/tex] is the half-life.

Now, substitute the known values in the above formula.

[tex]\rm 0.13P =P \left(\dfrac{1}{2} \right)^{\dfrac{400}{t_{1/2}}}[/tex]

Simplify the above expression.

[tex]\rm 0.13 = \left(\dfrac{1}{2} \right)^{\dfrac{400}{t_{1/2}}}[/tex]

Take the log on both sides.

[tex]\rm log(0.13) = {\dfrac{400}{t_{1/2}}} \times log\left(\dfrac{1}{2} \right)[/tex]

[tex]\rm t_{1/2} = \dfrac{400\times log(0.5)}{log(0.13)}[/tex]

Simplify the above expression in order to evaluate the [tex]\rm t_{1/2}[/tex].

[tex]\rm t_{1/2} = 135.897\;days[/tex]

For more information, refer to the link given below:

https://brainly.com/question/22724843

Final answer:

The half-life of a radioactive isotope is calculated by using the decay formula and solving for the known half-life, given that 13% of the original isotope remained after 400 days.

Explanation:

To determine the half-life of a radioactive isotope, we first need to understand that half-life is the time required for half of a sample of a radioactive isotope to decay. From the problem, it stated that after 400 days, only 13% of the original isotope remained. The formula for decay is N = N0 * (1/2)^(t/T), where N is the final amount, N0 is the initial amount, t is the time elapsed, and T is the half-life.

Given that N/N0 is 0.13 after 400 days, we can rewrite the decay formula to solve for T. By substituting the values into the equation, i.e., 0.13 = (1/2)^(400/T), we can use the laws of logarithms to solve for T. So then we will get the half-life (T) of the isotope.

Learn more about Half-Life here:

https://brainly.com/question/24710827

#SPJ11

Find the point on the line y = 4x + 5 that is closest to the origin.

Answers

Step 1

Find the equation of the line perpendicular to [tex] y = 4x + 5 [/tex] that pas through the origin

we know that

the slope of the equation [tex] y = 4x + 5 [/tex] is

[tex] m1=4 [/tex]

if two lines are perpendicular

then

the product of their slopes is equal to [tex] -1 [/tex]

[tex] m1*m2=-1 [/tex]

the slope of the line perpendicular is equal to

[tex] m2=-\frac{1}{m1} \\\\ m2=-\frac{1}{4} [/tex]

with m2 and the origin find the equation of the line

[tex] y-y1=m(x-x1)\\ y-0=(-\frac{1}{4} )*(x-0)\\ y=-\frac{1}{4} x [/tex]

Step 2

Solve the system

[tex] y = 4x + 5 [/tex]---> equation [tex] 1 [/tex]

[tex] y=-\frac{1}{4} x [/tex]-----> equation [tex] 2 [/tex]

Multiply equation [tex] 1 [/tex] by [tex] -1 [/tex]

Adds equation [tex] 1 [/tex] and equation [tex] 2 [/tex]

[tex] -y = -4x - 5 [/tex]

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

[tex] 0=-4x-\frac{1}{4} x-5\\ \\ \frac{17}{4} x=-5\\ \\ x=-\frac{20}{17} [/tex]

[tex] y = 4x + 5 [/tex]

[tex] y = 4*(-\frac{20}{17}) + 5 \\ \\ y=\frac{5}{17} [/tex]

the solution is the point [tex] (-\frac{20}{17} ,\frac{5}{17} ) [/tex]

[tex] (-\frac{20}{17} ,\frac{5}{17} ) [/tex]=[tex] (-1.176 ,0.294 ) [/tex]

therefore

the answer is

the point is [tex] (-\frac{20}{17} ,\frac{5}{17} ) [/tex]

see the attached figure

The point [tex]\boxed{(-1.176,0.294)}[/tex] on the line [tex]y=4x+5[/tex] is the closest point to the origin.  

Further explanation:

The general form of linear function is as follows:

[tex]\boxed{y=mx+c}[/tex]

A linear function has one independent variable and one dependent variable. The independent variable is [tex]x[/tex] and the dependent variable is [tex]y[/tex].

Here, [tex]c[/tex] is the constant term and [tex]m[/tex] is the slope and gives the rate of change of dependent variable.  

The point slope form of a line is given as follows:

[tex]\boxed{y-y_{1}=m(x-x_{1})}[/tex]  

where [tex](x_{1},y_{1})[/tex] is the point on the line and [tex]m[/tex] is the slope of the line.

It is given that the equation of the line is as follows:

[tex]y=4x+5[/tex]

where [tex]4[/tex] is the slope of the line.

Consider the slope of the line [tex]y=4x+5[/tex] as [tex]m_{1}=4[/tex].

We first find the line perpendicular to the line [tex]y=4x+5[/tex] that passes through the origin as shown in Figure 1 in the attachment below.

If two lines are perpendicular then the product of their slopes is [tex]-1[/tex]  that is [tex]m_{1}\tiimes m_{2}=-1[/tex].

And [tex]m_{2}[/tex] is the slope of the perpendicular line.

Calculated the value of [tex]m_{2}[/tex] as follows:

[tex]\begin{aligned}m_{1}\times m_{2}&=-1\\m_{2}&=-\dfrac{-1}{m_{1}}\\&=\dfrac{-1}{4}\\&=-0.25\end{aligned}[/tex]

Therefore, the slope of perpendicular line is [tex]-0.25[/tex].

We have the point [tex](0,0)[/tex] on the line and the slope of the line.

Thus, the equation of line is,

[tex]\begin{aligned}y-y_{1}&=m_{2}(x-x_{1})\\y-0&=(-0.25)(x-0)\\y&=-0.25x\end{aligned}[/tex]  

The equation of the perpendicular line is as follows:

[tex]\boxed{y=-0.25x}[/tex]        .......(2)

Substitute [tex]y=-0.25x[/tex] in equation (1).

[tex]\begin{aligned}-\dfrac{x}{4}&=4x+5\\-\dfrac{x}{4}-4x&=5\\-\dfrac{17x}{4}&=5\\-17x&=5\times 4\\x&=-\dfrac{20}{17}\\x&\approx-1.176\end{aligned}[/tex]  

Now, put the value of [tex]x[/tex] in equation (2) to get the value of [tex]y[/tex] as,

[tex]\begin{aligned}y&=-0.25\times (-1.176)\\&=0.294\end{aligned}[/tex]  

Therefore, the closest point is [tex]\boxed{(-1.176,0.294)}[/tex].

Learn more

1. A Problem on the slope-intercept form https://brainly.com/question/1473992.

2. A Problem on the center and radius of an equation https://brainly.com/question/9510228

3. A Problem on general form of the equation of the circle https://brainly.com/question/1506955

Answer details:

Grade: High school

Subject: Mathematics

Chapter: Linear equations

Keywords: Linear equations, slope of a line, equation of the line, function, real numbers, ordinates, abscissa, interval, open interval, closed intervals, semi-closed intervals, semi-open intervals, sets, range domain, codomain.

Ellen deposits $6,773 into an account earning 1% annually. After seven years what will Ellen's balance have grown to, including interest?

Answers

Take 6773 x 1%=6840.73 now take 6840.73 x 1% and add it back to give you year 2. Continue to year 7

There are seven ice skaters in a competition. How many different possibilities are there for the top three places? (A different ordering of the same three skaters counts as a different possibility.)

Answers

210 possibilities, if I am not mistaken.

I did a tree diagram. You first name the seven skaters (skater 1, skater 2, skater 3, ect..) and write them in a row.

After you do that, do 6 arrows from each number because you cannot have skater 1 be first and second place, same with 2 and 3 and so on, so you need only 6 arrows. Make sure when you label the arrows that none of the arrows are labeled as the first skater number you drew in the beginning.

Finally, from each arrow you just drew, draw 5 arrows labeled each skater EXCEPT the skater you drew in the beginning and the second skater.

To save time, you could just do all of the steps above for only one beginning skater. You don't have to do it to all of them, you would run out of paper and it would be super messy.

Count all of the outside arrows. You should have 30. Then, since there are 7 skaters and you did only one, do 30x7, which gives you the total outcomes of 210 possibilities.

A restaurant offers
7
appetizers and
9
main courses. In how many ways can a person order a​ two-course meal? 

Answers

63 two-course meals can be made.

Using the concept of combinations, the person can order a two course meal in 63 ways

How many ways can a person order a two course meal?

To determine the number of ways a person can order a two-course meal from the given options of appetizers and main courses, we can use the concept of combinations.

In this case, we need to choose one appetizer and one main course. Since these choices are independent, we can use the principle of multiplication.

The number of ways to choose one appetizer from 7 options is 7, and the number of ways to choose one main course from 9 options is 9.

Therefore, the total number of ways to order a two-course meal is given by the product of these two choices:

Number of ways = 7 * 9 = 63.

Hence, a person can order a two-course meal in 63 different ways from the given options of appetizers and main courses.

Learn more on combinations here;

https://brainly.com/question/28065038

#SPJ2

.A new truck costs $32,000. The car’s value will depreciate over time, which means it will lose value. For tax purposes, depreciation is usually calculated linearly. If the truck is worth $24,500 after three years, write an explicit formula for the value of the car after n years.

Answers

The explicit formula for the value of the truck after [tex]\(n\)[/tex] years is:

[tex]\[V(n) = -2,500n + 32,000\][/tex]

Where [tex]\(V(n)\)[/tex] represents the value of the truck after [tex]\(n\)[/tex] years.

To write an explicit formula for the value of the truck after n years with linear depreciation, we can use the formula for the equation of a straight line:

[tex]\[y = mx + b\][/tex]

Where:

- [tex]\(y\)[/tex] is the value of the truck after [tex]\(n\)[/tex] years.

- [tex]\(m\)[/tex] is the slope of the line, which represents the rate of depreciation per year.

- [tex]\(x\)[/tex] is the number of years.

-[tex]\(b\)[/tex] is the initial value of the truck.

Given:

- Initial value [tex](\(b\)): $32,000[/tex]

- Value after 3 years [tex](\(y\)): $24,500[/tex]

We can use these values to find the slope [tex](\(m\))[/tex]:

[tex]\[m = \frac{y_2 - y_1}{x_2 - x_1}\][/tex]

Substituting the given values:

[tex]\[m = \frac{24,500 - 32,000}{3 - 0}\]\[m = \frac{-7,500}{3}\]\[m = -2,500\][/tex]

Now, we have [tex]\(m = -2,500\)[/tex]. We can substitute this slope and the initial value into the equation:

[tex]\[y = -2,500x + 32,000\][/tex]

The explicit formula for the value of the truck after [tex]\(n\)[/tex] years is:

[tex]\[V(n) = -2,500n + 32,000\][/tex]

Where [tex]\(V(n)\)[/tex] represents the value of the truck after [tex]\(n\)[/tex] years.

Da sofa is on sale for $98.60, which is 29% of the regular price. What is the regular price ?

Answers

let the regular price be X
x\98.60 x 100=29%
100x\98.60=29(multiply both sides by 98.60 to remove the denominator
100x=2859.4(divide both sides by 100
x=28.594
regular price=$28.594

For a project, you cut paper into strips that are 2 1/2 inches long by 3/4 inches wide. what is the area of each strip of paper

Answers

Final answer:

The area of each strip of paper is 15/8 square inches.

Explanation:

The area of each strip of paper can be calculated by multiplying the length and width of the strip. In this case, the length is 2 1/2 inches and the width is 3/4 inches. To multiply fractions, multiply the numerators together to get the numerator of the product, and multiply the denominators together to get the denominator of the product. So, the area of each strip is:

(2 1/2 inches) x (3/4 inches) = (5/2 inches) x (3/4 inches) = 15/8 square inches.

Suzie hangs 10 pictures that each measure 8.5 inches wide on a wall. She spaces them 6 inches apart with 2 inches on each end, so that they fit perfectly on the wall. How wide is the wall?

Answers

I believe the wall would be 137 inches wide.
i believe the answer would be 139 to because you have to add up the pictures and how wide they are on the wall then take the inches they are spread apart by and voila you got your answer

Of all the species in the world, 444 out of every 555 are insects. What percentage of species are insects?

Answers

444 / 555 = 0.8 = 80% are insects
444 is 80% of 555
444 divided by 555 = .8 or .80 or 80%

Tom and Jim are distant cousins who meet during their family Thanksgiving meal. Tom tells Jim that he has 3 kids, and the product of their ages is 72. He also tells him the sum of their ages. Jim says he still can’t correctly guess the ages of Tom's kids. Finally, Tom says, "My youngest child's name is Joy." Jim can then correctly guess. What are the ages?

Answers

Answer:

6, 6, 2

Step-by-step explanation:

Factor 72:

72 = 2³ × 3²

Look for groups of 3 numbers whose products are 72 and their sums:

2, 4, 9: sum 15

8, 9, 1: sum 18

8, 3, 3: sum 14

6, 6, 2: sum 14

6, 4, 3: sum 13

12, 6, 1: sum 19

12, 3, 2: sum 17

18, 4, 1: sum 23

18, 2, 2: sum 22

24, 3, 1: sum 28

36, 2, 1: sum 39

72, 1, 1: sum 74

Jim knows the sum, but he can't guess the ages. that means the sum must be 14 for which there are two sets of ages which have a product of 72:

8, 3, 3 and 6, 6, 2

Then when he says "my youngest", that means one age is less than the other two. The only choice is 6, 6, 2.

37.5% of what number is 57?

Answers

152 is your answer(:
37.5 percent of 50 = 21.275

Best of luck~ Sans

Melissa's coffee shop makes a blend that is a mixture of two types of coffee type a coffee cost Melissa for 4.75 per pound and type B coffee costs 5.80 per pound this month the Melissa made 123 pounds of the blend for a total cost of $643.05 how many pounds of type B coffee did she use?

Answers

A little over 10 pounds of B coffee.

brent counted 10 red cards, 10 black cards and 20 blue cards. what is the ratio of red cards to other cards

Answers

Red Cards = 10
Other Cards (Black + Blue) = 10+20 = 30

So, the ratio would be: 10/30 = 1/3

So, your final answer is 1/3

Hope this helps!

Final answer:

The ratio of red cards to other cards that Brent counted (10 red cards, 10 black cards, 20 blue cards) is 1:3 after summing black and blue cards to find the total number of other cards and simplifying the ratio.

Explanation:

Brent counted 10 red cards, 10 black cards and 20 blue cards. The question is what is the ratio of red cards to other cards. To calculate the ratio, we need to determine the total number of cards that are not red, which would be the black and blue cards combined.

First, we sum the black and blue cards:

10 black cards + 20 blue cards = 30 other cards.

Now, we set up the ratio of red cards to other cards:

10 red cards : 30 other cards, which simplifies to 1 : 3 when both sides of the ratio are divided by 10, the greatest common divisor.

Therefore, the ratio of red cards to other cards is 1:3.

One integer is 5 more than another. Their product is 126. Find the integers.

Answers

a * b = 126
a = b + 5

b(b + 5) = 126
b^2 + 5b - 126 = 0
(b - 9)(b + 14) = 0

b - 9 = 0
b = 9

b + 14 = 0
b = -14....this is extraneous solution...it is not correct

a = b + 5
a = 9 + 5
a = 14

ur 2 integers are 9 and 14

A positive integer is 5 more than 23 times another. Their product is 6732. Find the two integers.

Answers

Another way to write this is:
x = 23y + 5
xy = 6732

Now plug in the first equation into the second:
(23y + 5)y = 6732
23y^2 + 5y - 6732 = 0

Either use quadratic equation or factor:
(y - 17)(23y + 396) = 0
y = 17 or -396/23

You know you can automatically eliminate the second y because it's negative and you need the two integers to multiply to a positive number (6732).

Plug y = 17 back into either equation (second might be easier):
17x = 6732
x = 396

Find the inverse function of f informally.

Answers

I hope this helps you

e figure below shows the derivative F' of a function F. If F(20) equals 100, estimate the maximum value attained by by F

Answers

Max occurs at x=50 where F'(x) = 0.

We need to find value for F(50) using fundamental theorem of calculus:
[tex] \int\limits^{50}_{20} {F'(x)} \, dx = F(50) - F(20) = F(50) - 100 [/tex]

[tex]F(50) = 100+A[/tex]
Where A is the estimated Area under the graph.
If we assume the shaded region is close to a right triangle then the Area is (1/2)*30*20 = 300

Therefore
[tex]F(50) = 100+300 = 400[/tex]

Where the above figure is given as the attendant derivatives F', the maximum value attained by F is 400.

How to obtain the maximum value

It is to be noted that:

Max occurs at x=50 where F'(x) = 0.

We need to find value for F(50) using fundamental theorem of calculus:

[tex]\int_{50}^{50} F' dx = F(50) - F(20)[/tex]

= F (50) -100
F(50) = 100 + A

Where A is the estimated Area under the graph.

If we assume the shaded region is close to a right triangle then the Area is

(1/2) x 30 x 20

= 300

Thus,

F (50) = 100 + 300

= 400

Learn more about derivatives at:

https://brainly.com/question/28376218

#SPJ3


At a concession​ stand, three

hot dogs

and two

hamburgers

cost ​$7.75
​;
two

hot dogs

and three

hamburgers

cost ​$8.50
.
Find the cost of one hot dog

and the cost of one hamburger
.

Answers

1 hot dog costs $1
1 hamburger costs $2.25

To find the individual cost of a hot dog and hamburger from a concession stand, we set up a system of equations from the given information and solve it to get the cost of one hot dog as $1.25 and one hamburger as $2.00.

To find the cost of one hot dog and one hamburger, we set up a system of equations based on the information given:

3 hot dogs + 2 hamburgers = $7.752 hot dogs + 3 hamburgers = $8.50

Let's denote the cost of one hot dog as d and the cost of one hamburger as h. We can then rewrite the given information as:

3d + 2h = 7.752d + 3h = 8.50

Solving this system of equations, we can multiply the first equation by 2 and the second equation by 3, and subtract them, cancelling out the hamburger terms:

6d + 4h = 15.506d + 9h = 25.50

Subtracting the first equation from the second gives:

0d + 5h = 10.00

Thus, one hamburger costs $2.00. Plugging this back into the first equation, we get:

3d + 2(2) = 7.75

Which simplifies to:

3d + 4 = 7.753d = 3.75d = 1.25

Therefore, one hot dog costs $1.25.

Other Questions
The product of eight minus a number and seven equals forty when decreased by five. Which equation represents the sentence? In the book "Wonder", what do you consider the climax of the book? Why do you consider it the climax? In pea plants, the allele for tallness (t) is dominant to the allele for shortness (t). in the cross between a tall pea plant and a short pea plant shown below, what is the probability that the resulting offspring will be tall? In the essay "On the Mode of Communication of Cholera," what is the primary technique that author John Snow uses to support his claim that cholera spreads from person to person?citing personal anecdotesciting scientific evidencedescribing peoples experienceciting hypothetical situations which detail from the text best helps support the theme that evil must be pushed back regardless of your beliefs? A thorin refuses to share any treasure with the men who who are his friends displaying an almost disgusting greed B thorin comes to the aid of his friends the elves and men showing that he can forget his stubborn resentments C the eagles come to the aid of the men dwarves and elves even though they do not usually get involved in the world outside of their own D bilbo gives the arkenstone to bard to help the dwarves and men settle their dispute m is at least 25 m_____25 options > In 1991, the federal minimum wage rate was $4.25 per hour. In 1997, it was increased to $5.15. Find the annual rate of change in the federal minimum wage rate from 1991 to 1997 The formation of a gas in a chemical reaction, due to ions changing places, often indicates that the reaction is which type? A) synthesis B) double-displacement C) decomposition D) single-displacement During which period of development do people typically face new issues, which may lead to eating disorders or substance abuse?A. middle adult hood B. Early adulthood C. AdolescenceD. school age Graph the function represented in the table on the coordinate plane. Which dynasty followed the Yuan dynasty of Kublai Khan? Varmint is an example of _____.High GermanDutchAmerican dialect which detail from the text best helps support the theme that evil must be pushed back, regardless of your beliefs? what is 8283 divided by 19 Why did the travelers use a prairie schooner?They were waterproof.They could haul many pounds.They were small and light.They could carry many people. The total money y Aaron earned mowing x lawns is showns by the equation y= 15x+25. What does the slope represent? How many days equals 7344 minutes?? John has read the first 114 pages of a novel. He has read 3 pages less than one-third of the novel.Write an equation to describe the total number of pages p in the novel, and find the value of p. 10. Systematists categorize all living creatures into what three domains?a. Bacteria, Euglena, Eukaryab. Bacteria, Archaea, Eukaryac. Archaea, Plantae, Eukaryad. Protista, Plantae, Eukaryae. Prokaryota, Eukarya, Plantae 10. Systematists categorize all living creatures into what three domains?a. Bacteria, Euglena, Eukaryab. Bacteria, Archaea, Eukaryac. Archaea, Plantae, Eukaryad. Protista, Plantae, Eukaryae. Prokaryota, Eukarya, Plantae Which specialized court would be the first court to hear a case in which a child broke a state law? Steam Workshop Downloader