The sales tax rate in wilson county is 6.75%. suppose total price of an item that you bought in wilson county including taxes is $14.93, what is the price (rounded to two decimal places) before tax?

Answers

Answer 1

The price of the item before tax is approximately $13.99.

We know that the total price of the item including the 6.75% sales tax is $14.93. Let's call the price of the item before tax "x."

To find the price before tax, we need to remove the sales tax from the total price. We can do this by dividing the total price by 1 plus the tax rate (expressed as a decimal).

So, we can set up the equation:

x + 0.0675x = $14.93

Here, 0.0675 is the decimal equivalent of the 6.75% tax rate.

Simplifying this equation, we can combine like terms:

1.0675x = $14.93

Now, we can solve for x by dividing both sides by 1.0675:

x = $14.93 ÷ 1.0675

Using a calculator, we get:

x ≈ $13.99

So, the price of the item before tax is approximately $13.99.

Learn more about "price of the item before tax" : https://brainly.com/question/9437038

#SPJ11


Related Questions

Describe and sketch the surface in double-struck r3 represented by the equation y = 3x.

Answers

The surface is double-struck R3 represented by the equation y = 3x is a plane. In this equation, y represents the y-coordinate and x represents the x-coordinate.

The equation y = 3x indicates that for every value of x, the corresponding value of y is three times that value of x.  To sketch this plane, we can start by plotting a few points. For example, if we choose x = 0, then y = 3(0) = 0, so we have the point (0, 0). Similarly, if we choose x = 1, then y = 3(1) = 3, so we have the point (1, 3). Connecting these points and extending the line in both directions, we can sketch the plane.

Since the equation is in double-struck R3, it implies that the plane exists in three-dimensional space. However, since the equation does not include a z-term, the plane is parallel to the z-axis and does not change in the z-direction. Therefore, the surface is a flat plane extending infinitely in the x and y directions.

To know more about X-Coordinate visit:

https://brainly.com/question/28913580

#SPJ11

An open-top box with a square base is being constructed to hold a volume of 400 in3. the base of the box is made from a material costing 7 cents/in2. the front of the box must be decorated, and will cost 12 cents/in2. the remainder of the sides will cost 4 cents/in2. find the dimensions that will minimize the cost of constructing this box. front width= in. depth= in. height= in.

Answers

Therefore, the dimensions that will minimize the cost of constructing this box are:

Width ≈ 9.139 inches

Depth ≈ 9.139 inches

Height ≈ 4.745 inches

To minimize the cost of constructing the box, we need to determine the dimensions of the box that will minimize the total cost.

Let's denote the dimensions of the square base as x (both width and depth) and the height of the box as h.

The volume of the box is given as 400 in³, which means:

x²h = 400

We want to minimize the cost, so we need to determine the cost function. The total cost consists of three components: the cost of the base, the cost of the front, and the cost of the remaining sides.

The cost of the base is given as 7 cents/in², so the cost of the base will be:

7x²

The cost of the front is given as 12 cents/in², and the front area is xh, so the cost of the front will be:

12(xh) = 12xh

The cost of the remaining sides (four sides) is given as 4 cents/in², and the total area of the remaining sides is:

2xh + x² = 2xh + x²

The total cost function is the sum of these three components:

C(x, h) = 7x² + 12xh + 4(2xh + x²)

Simplifying the equation:

C(x, h) = 7x² + 12xh + 8xh + 4x²

C(x, h) = 11x² + 20xh

To minimize the cost, we need to find the critical points of the cost function by taking partial derivatives with respect to x and h:

∂C/∂x = 22x + 20h = 0 ... (1)

∂C/∂h = 20x = 0 ... (2)

From equation (2), we can see that x = 0, but this does not make sense in the context of the problem. Therefore, we can ignore this solution.

From equation (1), we have:

22x + 20h = 0

h = -22x/20

h = -11x/10

Substituting this value of h back into the volume equation:

x²h = 400

x²(-11x/10) = 400

-11x³/10 = 400

-11x³ = 4000

x³ = -4000/(-11)

x³ = 4000/11

x ≈ 9.139

Since x represents the dimensions of a square, the width and depth of the box will both be approximately 9.139 inches. To find the height, we substitute this value of x back into the volume equation:

x²h = 400

(9.139)²h = 400

h ≈ 4.745

Therefore, the dimensions that will minimize the cost of constructing this box are:

Width ≈ 9.139 inches

Depth ≈ 9.139 inches

Height ≈ 4.745 inches

To know more about dimensions here

https://brainly.com/question/31460047

#SPJ11

D Integers are also used in chemistry. For example, a hydrogen atom has one proton, which has a charge of +1, and one electron, which has a charge of 1. The total charge of a hydrogen atom is +1+1, or 0. Describe three more real-life situations in which opposite quantities combine to make 0. ​

Answers

The code will sort the specified range of data in ascending order based on the values in the specified column.

Make sure to adjust the range and column index according to your specific needs.

Below is a well-structured VBA Sub procedure that utilizes the bubble sort algorithm to sort several arrays of values in ascending order based on the values in one of the columns.

```vba
Sub BubbleSort()
   Dim dataRange As Range
   Dim dataArr As Variant
   Dim numRows As Integer
   Dim i As Integer, j As Integer
   Dim temp As Variant
   Dim sortCol As Integer
   
   ' Set the range of data to be sorted
   Set dataRange = Range("A1:D10")
   
   ' Get the values from the range into an array
   dataArr = dataRange.Value
   
   ' Get the number of rows in the data
   numRows = UBound(dataArr, 1)
   
   ' Specify the column index to sort by (e.g., column B)
   sortCol = 2
   
   ' Perform bubble sort
   For i = 1 To numRows - 1
       For j = 1 To numRows - i
           ' Compare values in the sort column
           If dataArr(j, sortCol) > dataArr(j + 1, sortCol) Then
               ' Swap rows if necessary
               For Each rng In dataRange.Columns
                   temp = dataArr(j, rng.Column)
                   dataArr(j, rng.Column) = dataArr(j + 1, rng.Column)
                   dataArr(j + 1, rng.Column) = temp
               Next rng
           End If
       Next j
   Next i
   
   ' Write the sorted array back to the range
   dataRange.Value = dataArr
End Sub
```

To use this code, follow these steps:

1. Open your Excel workbook and press `ALT + F11` to open the VBA Editor.
2. Insert a new module by clicking `Insert` and selecting `Module`.
3. Copy and paste the above code into the new module.
4. Modify the `dataRange` variable to specify the range of data you want to sort.
5. Adjust the `sortCol` variable to indicate the column index (starting from 1) that you want to sort the data by.
6. Run the `BubbleSort` macro by pressing `F5` or clicking `Run` > `Run Sub/UserForm`.

The code will sort the specified range of data in ascending order based on the values in the specified column. Make sure to adjust the range and column index according to your specific needs.

To know more about code click-

https://brainly.com/question/28108821

#SPJ11

These examples highlight how opposite quantities combine to make 0 in different contexts, including chemical reactions, electrical circuits, and physical interactions. By understanding these scenarios, we can appreciate the concept of opposite quantities neutralizing each other to achieve a balanced state.

In real-life situations, there are several examples where opposite quantities combine to make 0. Let's explore three of these scenarios:

1. Balancing chemical equations: In chemistry, when balancing chemical equations, we need to ensure that the total charge on both sides of the equation is equal. For instance, consider the reaction between sodium (Na) and chlorine (Cl) to form sodium chloride (NaCl). Sodium has a charge of +1, while chlorine has a charge of -1. To balance the equation, we need one sodium atom and one chlorine atom, resulting in a total charge of +1 + (-1) = 0.

2. Electrical circuits: In electrical circuits, opposite charges combine to create a neutral state. For instance, consider a circuit with a battery, wires, and a lightbulb. The battery provides an excess of electrons, which are negatively charged, and the lightbulb receives these electrons. As the electrons flow through the wire, they neutralize the positive charges in the circuit, resulting in an overall charge of 0.

3. Tug-of-war: In a tug-of-war game, two teams pull on opposite ends of a rope. When both teams exert an equal force in opposite directions, the rope remains stationary. The forces exerted by the teams cancel each other out, resulting in a net force of 0. This situation demonstrates the principle of balanced forces.


Learn more about physical interactions

https://brainly.com/question/34029000

#SPJ11

In a group of 25 students 12 passed socail 15 passed science if every student passed at least 1 subject find how many students passed both

Answers

2 students passed both subjects in the group.

To find the number of students who passed both subjects, we need to calculate the intersection of the two sets of students who passed social and science respectively.

Number of students in the group (n) = 25
Number of students who passed social (A) = 12
Number of students who passed science (B) = 15

We can use the addition theorem.

Step 1: n(A ∪ B)= number of students who passed atleast one.

n(A ∪ B) = 25

Step 2: Subtract the number of students who passed both subjects.
= n(A) + n(B) - n(A ∪ B)

n(A ∩ B) = 12 + 15 - 25
n(A ∩ B) = 27 - 25
n(A ∩ B) = 2
addition theorem https://brainly.com/question/28604720

#SPJ11

Solve: startfraction 2 over 3 endfraction minus 4 x plus startfraction 7 over 2 endfraction equals negative 9 x plus startfraction 5 over 6. endfraction. â€"" 4x = â€""9x x = x equals negative startfraction 3 over 2 endfraction. x = x equals negative startfraction 2 over 3 endfraction. x = x equals startfraction 2 over 3 endfraction. x = x equals startfraction 3 over 2 endfraction.

Answers

The solution to the equation is x = 17/30.

To solve the equation, start by combining like terms on both sides.

On the left side, we have the fraction 2/3 and the term -4x.

On the right side, we have the fraction 7/2 and the term -9x.

To combine the fractions, we need a common denominator.

The least common multiple of 3 and 2 is 6.

So, we can rewrite 2/3 as 4/6 and 7/2 as 21/6.

Now, the equation becomes:

4/6 - 4x = 21/6 - 9x

Next, let's get rid of the fractions by multiplying both sides of the equation by 6:

6 * (4/6 - 4x) = 6 * (21/6 - 9x)

This simplifies to:

4 - 24x = 21 - 54x

Now, we can combine the x terms on one side and the constant terms on the other side.

Adding 24x to both sides gives:

4 + 24x - 24x = 21 - 54x + 24x

This simplifies to:

4 = 21 - 30x

Next, subtract 21 from both sides:

4 - 21 = 21 - 30x - 21

This simplifies to:

-17 = -30x

Finally, divide both sides by -30 to solve for x:

-17 / -30 = -30x / -30

This simplifies to:

x = 17/30

So the solution to the equation is x = 17/30.

To know more about least common multiple, visit:

https://brainly.com/question/30060162

#SPJ11

I need answers for this question

Answers

The inequality 3 ≤ x - 2 simplifies to x ≥ 5. This means x can take any value greater than or equal to 5. Therefore, option (E) with a number line from positive 5 to positive 10 is correct.

Given: 3 [tex]\leq[/tex] x - 2

We need to work out which number line below shows the values that x can take. In order to solve the inequality, we will add 2 to both sides. 3+2 [tex]\leq[/tex] x - 2+2 5 [tex]\leq[/tex] x

Now the inequality is in form x [tex]\geq[/tex] 5. This means that x can take any value greater than or equal to 5. So, the number line going from positive 5 to positive 10 shows the values that x can take.

Therefore, the correct option is (E) A number line going from positive 5 to positive 10.  We added 2 to both sides of the given inequality, which gives us 5 [tex]\leq[/tex] x. It shows that x can take any value greater than or equal to 5.

Hence, option E is correct.

For more questions on inequality

https://brainly.com/question/30238989

#SPJ8

a vault holds only 8 ounce tablets of gold and 5 ounce tablets of silver if there are 130 ounces of gold and silver total what is the greatest amount of gold that can be in the vault

Answers

The greatest amount of gold that can be in the vault is 0 ounces.

To find the greatest amount of gold that can be in the vault, we need to determine the maximum number of 8 ounce tablets that can be stored.

If the total weight of gold and silver is 130 ounces, we can subtract the weight of the silver from the total to get the weight of gold.

Since each silver tablet weighs 5 ounces, the weight of silver can be found by dividing the total weight by 5.

130 ounces ÷ 5 ounces = 26 tablets of silver

Now, to find the maximum number of 8 ounce tablets that can be stored, we divide the weight of gold by 8.

130 ounces - (26 tablets × 5 ounces) = 130 ounces - 130 ounces = 0 ounces of gold

Therefore, the greatest amount of gold that can be in the vault is 0 ounces.

Know more about weight of silver here:

https://brainly.com/question/29896926

#SPJ11

aquaculture is the art of cultivating the plants and animals indigenous to water. in the example considered here, it is assumed that a batch of catfish are raised in a pond. we are interested in determining the best time for harvesting the fish so that the cost per pound for raising the fish is minimized. a differential equation describing the growth of fish may be expressed as (1) dw dt

Answers

Aquaculture refers to the practice of cultivating water-borne plants and animals.

In the given scenario, a group of catfish are grown in a pond. The goal is to determine the optimal time for harvesting the fish so that the cost per pound for raising the fish is kept to a minimum.

A differential equation that defines the fish's growth may be written as follows:dw/dt = r w (1 - w/K) - hwhere w represents the weight of the fish, t represents time, r represents the growth rate of the fish,

K represents the carrying capacity of the pond, and h represents the fish harvest rate.The differential equation above explains the growth rate of the fish.

The equation is solved to determine the weight of the fish as a function of time. This equation is important for determining the optimal time to harvest the fish.

The primary goal is to determine the ideal harvesting time that would lead to a minimum cost per pound.

The following information would be required to compute the cost per pound:Cost of Fish FoodCost of LaborCost of EquipmentMaintenance costs, etc.

The cost per pound is the total cost of production divided by the total weight of the fish harvested. Hence, the primary aim of this mathematical model is to identify the optimal time to harvest the fish to ensure that the cost per pound of fish is kept to a minimum.

To know more about practice visit:

https://brainly.com/question/12721079

#SPJ11

he owner of the good deals store opens a new store across town. for the new store, the owner estimates that, during business hours, an average of 909090 shoppers per hour enter the store and each of them stays an average of 121212 minutes. the average number of shoppers in the new store at any

Answers

The average number of shoppers in the new store at any given time is approximately 1,839,383,838.

The owner of the new store estimates that during business hours, an average of 909090 shoppers per hour enter the store and each of them stays an average of 121212 minutes.

To calculate the average number of shoppers in the new store at any given time, we need to convert minutes to hours.

Since there are 60 minutes in an hour,

121212 minutes is equal to 121212/60

= 2020.2 hours.
To find the average number of shoppers in the store at any given time, we multiply the average number of shoppers per hour (909090) by the average time each shopper stays (2020.2).

Therefore, the average number of shoppers in the new store at any given time is approximately

909090 * 2020.2 = 1,839,383,838.

To know more about average number visit:

https://brainly.com/question/31087305

#SPJ11



In this lesson you learned that m=y₂-y₁ / x₂-x₁. Use an algebraic proof to show that the slope can also be calculated using the equation m=y₁-y₂ /x₁-x₂

Answers

The algebraic proof demonstrates that both equations, m = (y₂ - y₁) / (x₂ - x₁) and m = (y₁ - y₂) / (x₁ - x₂), are equivalent and can be used to calculate the slope.

In this lesson, we learned that the slope of a line can be calculated using the formula m = (y₂ - y₁) / (x₂ - x₁).

Now, let's use algebraic proof to show that the slope can also be calculated using the equation m = (y₁ - y₂) / (x₁ - x₂).
Step 1: Start with the given equation: m = (y₂ - y₁) / (x₂ - x₁).
Step 2: Multiply the numerator and denominator of the equation by -1 to change the signs: m = - (y₁ - y₂) / - (x₁ - x₂).
Step 3: Simplify the equation: m = (y₁ - y₂) / (x₁ - x₂).
Therefore, we have shown that the slope can also be calculated using the equation m = (y₁ - y₂) / (x₁ - x₂), which is equivalent to the original formula. This algebraic proof demonstrates that the two equations yield the same result.
In conclusion, using an algebraic proof, we have shown that the slope can be calculated using either m = (y₂ - y₁) / (x₂ - x₁) or m = (y₁ - y₂) / (x₁ - x₂).

These formulas give the same result and provide a way to find the slope of a line using different variations of the equation.

To know more about algebraic visit:

https://brainly.com/question/953809

#SPJ11

To show that the slope can also be calculated using the equation m=y₁-y₂ /x₁-x₂,

let's start with the given formula: m = (y₂ - y₁) / (x₂ - x₁).

Step 1: Multiply the numerator and denominator of the formula by -1 to get: m = -(y₁ - y₂) / -(x₁ - x₂).

Step 2: Simplify the expression by canceling out the negative signs: m = (y₁ - y₂) / (x₁ - x₂).

Step 3: Rearrange the terms in the numerator of the expression: m = (y₁ - y₂) / -(x₂ - x₁).

Step 4: Multiply the numerator and denominator of the expression by -1 to get: m = -(y₁ - y₂) / (x₁ - x₂).

Step 5: Simplify the expression by canceling out the negative signs: m = (y₁ - y₂) / (x₁ - x₂).

By following these steps, we have shown that the slope can also be calculated using the equation m=y₁-y₂ /x₁-x₂.

This means that both formulas are equivalent and can be used interchangeably to calculate the slope.

It's important to note that in this proof, we used the property of multiplying both the numerator and denominator of a fraction by -1 to change the signs of the terms.

This property allows us to rearrange the terms in the numerator and denominator without changing the overall value of the fraction.

This algebraic proof demonstrates that the formula for calculating slope can be expressed in two different ways, but they yield the same result.

Learn more about  slope:

https://brainly.com/question/3605446

#SPJ11

For each value of θ , find the values of cos θ, sinθ , and tan θ . Round your answers to the nearest hundredth. 16°

Answers

The values of cos(16°) ≈ 0.96, sin(16°) ≈ 0.28, tan(16°) ≈ 0.29.



To find the values of cos θ, sin θ, and tan θ for θ = 16°, we can use the trigonometric ratios.

First, let's start with cos θ. The cosine of an angle is defined as the ratio of the adjacent side to the hypotenuse in a right triangle. Since we only have the angle θ = 16°, we need to construct a right triangle. Let's label the adjacent side as x, the opposite side as y, and the hypotenuse as h.

Using the trigonometric identity: cos θ = adjacent / hypotenuse, we can write the equation as cos(16°) = x / h.

To find x and h, we can use the Pythagorean theorem: x^2 + y^2 = h^2. Since we only have the angle θ, we can assume one side to be 1 (a convenient assumption for simplicity). Thus, y = sin(16°) and x = cos(16°).

Now, let's calculate the values using a calculator or a trigonometric table.

cos(16°) ≈ 0.96 (rounded to the nearest hundredth).

Similarly, we can find sin(16°) using the equation sin(θ) = opposite / hypotenuse. sin(16°) ≈ 0.28 (rounded to the nearest hundredth).

Lastly, we can find tan(16°) using the equation tan(θ) = opposite / adjacent. tan(16°) ≈ 0.29 (rounded to the nearest hundredth).

To know more about the Pythagorean theorem visit:

https://brainly.com/question/231802

#SPJ11



The loudness measured in decibels (dB) is defined by loudness =10 log I₀, where I is the intensity and I₀=10⁻¹² W/m² .The human threshold for pain is 120 dB. Instant perforation of the eardrum occurs at 160dB.


(b) How many times as intense is the noise that will perforate an eardrum as the noise that causes pain?

Answers

The noise that will perforate an eardrum is 10,000 times more intense than the noise that causes pain.


To find the answer, we need to compare the intensities of the two noises using the equation given: loudness = 10 log I.

Let's assume the intensity of the noise that causes pain is I₁, and the intensity of the noise that perforates an eardrum is I₂. We are asked to find the ratio I₂/I₁.

Given that loudness is defined as 10 log I, we can rewrite the equation as I = 10^(loudness/10).

Using this equation, we can find the intensities I₁ and I₂.

For the noise that causes pain:
loudness₁ = 120 dB
I₁ = 10^(120/10) = 10^(12) = 10¹² W/m²

For the noise that perforates an eardrum:
loudness₂ = 160 dB
I₂ = 10^(160/10) = 10^(16) = 10¹⁶ W/m²

Now, we can find the ratio I₂/I₁:
I₂/I₁ = (10¹⁶ W/m²) / (10¹² W/m²)
I₂/I₁ = 10⁴

Therefore, the noise that will perforate an eardrum is 10,000 times more intense than the noise that causes pain.

To know more about noise refer here:

https://brainly.com/question/32416715

#SPJ11

a 7-digit telephone number is called memorable if the prefix sequence is exactly the same as either of the sequences or (possible both). assume that each can be any of the ten decimal digits what is the number of distinct memorable telephone numbers? a) 19810 b) 19910 c) 19990 d) 20000 e) 20100

Answers

None of the options is correct

To find the number of distinct memorable telephone numbers, we need to consider the possibilities for the prefix sequence. Since each digit can be any of the ten decimal digits, there are 10 options for each digit in the prefix sequence.

Now, we need to consider the two possibilities:
1) The prefix sequence is the same as the first sequence.
2) The prefix sequence is the same as the second sequence.

For the first sequence, there are 10 options for each of the 3 digits in the prefix sequence. Therefore, there are 10^3 = 1000 possible numbers.

For the second sequence, there are also 10 options for each of the 4 digits in the prefix sequence. Therefore, there are 10^4 = 10000 possible numbers.

Since the telephone number can be memorable if the prefix sequence is exactly the same as either of the sequences or both, we need to consider the union of these two sets of possible numbers.

The total number of distinct memorable telephone numbers is 1000 + 10000 = 11000.

Therefore, the correct answer is not among the options provided.

Know more about  sequence here:

https://brainly.com/question/33239741

#SPJ11

Menus The local diner offers a meal combination consisting of an appetizer, a soup, a main course, and a dessert. There are six appetizers, five soups, five main courses, and six desserts. Your diet restricts you to choosing between a dessert and an appetizer. (You cannot have both.) Given this restriction, how many three-course meals are possible

Answers

The three-course meals that are possible are 300.

To calculate how many three-course meals are possible, we need to calculate the total number of options. Since, you cannot have both dessert and appetizer, you have two options for the first course. Let's consider both these cases separately.

Case 1: Dessert

For the first course, there are six dessert option. After choosing a dessert, you are left with five soup option and five main course option. In this case, number of three-course meals possible are 6 * 5 * 5 = 150.

Case 2: Appetizer

For the first course, there are six appetizer option. After choosing an appetizer, you are left with five soup option and five main course option. In this case, number of three-course meals possible are 6 * 5 * 5 = 150.

Therefore, by adding up both the possibilities from both the cases, we have a total of 150 + 150 = 300 three-course meals possible.

To study more about Possibilities:

https://brainly.com/question/25870256



Rationalize the denominators and simplify.

4+√6 / √2+√3

Answers

The simplified expression is -√2 + 2√3.

By multiplying both the numerator and the denominator by the conjugate of the denominator, we can rationalize the denominator and make the expression (4 + 6) / (-2 + 3) easier to understand.

The form of √2 + √3 is √2 - √3.

By duplicating the numerator and denominator by √2 - √3, we get:

[(4 + 6) * (2 - 3)] / [(2 + 3) * (2 - 3)] By applying the distributive property to the numerator and denominator, we obtain:

[(4 * 2) + (4 * -3) + (6) * 2) + (6) * -3)] / [(2 * 2) + (2) * -3) + (3) * 2) + (3) * -3)] Further simplifying, we obtain:

[42 - 43 + 12 - 18] / [2 - 6 + 6 - 3] When similar terms are combined, we have:

[42 - 43 + 23 - 32] / [-1] Changing the terms around:

(4√2 - 3√2 - 4√3 + 2√3)/(- 1)

Working on the terms inside the sections:

(-2 - 23) / (-1) Obtain the positive denominator by multiplying the expression by -1 at the end:

- 2 + 2 3; consequently, the simplified formula is -√2 + 2√3.

To know more about Expression, visit

brainly.com/question/1859113

#SPJ11

Suppose you want to model the difference -4-7 do you need to add zero pairs if so why?how many should you add what is the difference?

Answers

Answer:

Yes and no.  It depends on how you set up the problem.  You can set it up as an addition or a subtraction problem.  As a subtraction problem you would use zero pairs, but it you rewrote the expression as an addition problem then you would not need zero pairs.

Step-by-step explanation:

You can:

You can add 7 zero pairs.

_ _ _ _ _ _ _ _ _ _ _  The 4 negative and 7 zero pairs.  

            + + + + + + +

I added 7 zero pairs because I am told to take away 7 positives, but I do not have any positives so I added 7 zero pairs with still gives the expression a value to -4, but I now can take away 7 positives.  When I take the positives away, I am left with 11 negatives.

_ _ _ _ _ _ _ _ _ _ _.

I can rewrite the problem as an addition problem and then I would not need zero pairs.

- 4 - 7 is the same as -4 + -7  Now we would model this as

_ _ _ _

_ _ _ _ _ _ _

The total would be 7 negatives.

If f(1) = 12, f ' is continuous, and 7 f '(x) dx 1 = 20, what is the value of f(7)? f(7) =

Answers

The value of function f(7) is approximately 14.857.

To find the value of f(7), we can use the information given about f(1), the continuity of f', and the definite integral involving f'.

Let's go step by step:

1. We are given that f(1) = 12. This means that the value of the function f(x) at x = 1 is 12.

2. We are also given that f' is continuous. This implies that f'(x) is continuous for all x in the domain of f'.

3. The definite integral 7 ∫ f'(x) dx from 1 to 7 is equal to 20. This means that the integral of f'(x) over the interval from x = 1 to x = 7 is equal to 20.

Using the Fundamental Theorem of Calculus, we can relate the definite integral to the original function f(x):

∫ f'(x) dx = f(x) + C,

where C is the constant of integration.

Substituting the given information into the equation, we have:

7 ∫ f'(x) dx = 20,

which can be rewritten as:

7 [f(x)] from 1 to 7 = 20.

Now, let's evaluate the definite integral:

7 [f(7) - f(1)] = 20.

Since we know f(1) = 12, we can substitute this value into the equation:

7 [f(7) - 12] = 20.

Expanding the equation:

7f(7) - 84 = 20.

Moving the constant term to the other side:

7f(7) = 20 + 84 = 104.

Finally, divide both sides of the equation by 7:

f(7) = 104/7 = 14.857 (approximately).

Therefore, f(7) has a value of around 14.857.

Learn more about function on:

https://brainly.com/question/11624077

#SPJ11

What is the output of the following code? var x = [4, 7, 11]; x.foreach(stepup); function stepup(value, i, arr) { arr[i] = value 1; }

Answers

The output of the code var x = [4, 7, 11]; x. for each (stepup); function stepup(value, i, arr) { arr[i] = value 1; }  is [5, 8, 12].

Here's an explanation of this code:
1. The code initializes an array called "x" with the values [4, 7, 11].
2. The "foreach" method is called on the array "x". This method is used to iterate over each element in the array.
3. The "stepup" function is passed as an argument to the "foreach" method. This function takes three parameters: "value", "i", and "arr".
4. Inside the "stepup" function, each element in the array is incremented by 1. This is done by assigning "value + 1" to the element at index "i" in the array.
5. The "for each" method iterates over each element in the array and applies the "stepup" function to it.
6. After the "for each" method finishes executing, the modified array is returned as the output.
7. Therefore, the output of the code is [5, 8, 12].

Know more about array here:

https://brainly.com/question/30757831

#SPJ11

when the base-$b$ number $11011 b$ is multiplied by $b-1$, then $1001 b$ is added, what is the result (written in base $b$)?

Answers

we express the result in base $b$:  $b^5 - 2b^4 + 3b^3 - 2b^2 + 2b^1 + b^0$ (written in base $b$)

To find the result when the base-$b$ number $11011_b$ is multiplied by $b-1$ and then $1001_b$ is added, we can follow these steps:

Step 1: Multiply $11011_b$ by $b-1$.
Step 2: Add $1001_b$ to the result from step 1.
Step 3: Express the final result in base $b$.

To perform the multiplication, we can expand $11011_b$ as $1 \cdot b^4 + 1 \cdot b^3 + 0 \cdot b^2 + 1 \cdot b^1 + 1 \cdot b^0$.

Now, we can distribute $b-1$ to each term:

$(1 \cdot b^4 + 1 \cdot b^3 + 0 \cdot b^2 + 1 \cdot b^1 + 1 \cdot b^0) \cdot (b-1)$

Expanding this expression, we get:

$(b^4 - b^3 + b^2 - b^1 + b^0) \cdot (b-1)$

Simplifying further, we get:

$b^5 - b^4 + b^3 - b^2 + b^1 - b^4 + b^3 - b^2 + b^1 - b^0$

Combining like terms, we have:

$b^5 - 2b^4 + 2b^3 - 2b^2 + 2b^1 - b^0$

Now, we can add $1001_b$ to this result:

$(b^5 - 2b^4 + 2b^3 - 2b^2 + 2b^1 - b^0) + (1 \cdot b^3 + 0 \cdot b^2 + 0 \cdot b^1 + 1 \cdot b^0)$

Simplifying further, we get:

$b^5 - 2b^4 + 3b^3 - 2b^2 + 2b^1 + b^0$

Finally, we express the result in base $b$:

$b^5 - 2b^4 + 3b^3 - 2b^2 + 2b^1 + b^0$ (written in base $b$)

Know more about base-$b$ here:

https://brainly.com/question/31939284

#SPJ11

student decides to investigate how effective washing with soap is in eliminating bacteria. to do this, she tested four different methods: washing with water only, washing with regular soap, washing with antibacterial soap, and spraying hands with an antibacterial spray (containing 65% ethanol as an active ingredient). she suspected that the number of bacterial on her hands before washing might vary considerably from day to day. to help even out the effects of those changes, she generated random numbers to determine the order of the four treatments. each morning she washed her hands according to the treatment randomly chosen. then she placed her right hand on a sterile media plate designed to encourage bacterial growth. she incubated each play for 2 days at 360c360c, after which she counted the number of bacteria colonies. she replicated this procedure 8 times for each of the four treatments. the data for the bacteria study is given in the file bacteria.csv on canvas. remember that higher bacteria count means dirtier hands after washin

Answers

The higher bacterial count means dirtier hands after washing.

Given data: A student decides to investigate how effective washing with soap is in eliminating bacteria. To do this, she tested four different methods: washing with water only, washing with regular soap, washing with antibacterial soap, and spraying hands with an antibacterial spray (containing 65% ethanol as an active ingredient). She suspected that the number of bacteria on her hands before washing might vary considerably from day to day. To help even out the effects of those changes, she generated random numbers to determine the order of the four treatments.

Each morning she washed her hands according to the treatment randomly chosen. Then she placed her right hand on a sterile media plate designed to encourage bacterial growth. She incubated each play for 2 days at 360C, after which she counted the number of bacteria colonies. She replicated this procedure 8 times for each of the four treatments. Remember that higher bacteria count means dirtier hands after washing.

Therefore, from the given data, a student conducted an experiment to investigate how effective washing with soap is in eliminating bacteria. For this, she used four different methods: washing with water only, washing with regular soap, washing with antibacterial soap, and spraying hands with an antibacterial spray (containing 65% ethanol as an active ingredient). The higher bacterial count means dirtier hands after washing.

Learn more about bacterial count visit:

brainly.com/question/31622568

#SPJ11

Find the vertices, foci, and asymptotes of each hyperbola.

y² / 49 - x² / 25=1

Answers

To find the vertices, foci, and asymptotes of the hyperbola given by the equation y² / 49 - x² / 25 = 1, we can compare it to the standard form equation of a hyperbola: (y - k)² / a² - (x - h)² / b² = 1.

Comparing the given equation to the standard form, we have a = 7 and b = 5.

The center of the hyperbola is the point (h, k), which is (0, 0) in this case.

To find the vertices, we add and subtract a from the center point. So the vertices are located at (h ± a, k), which gives us the vertices as (7, 0) and (-7, 0).

The distance from the center to the foci is given by c, where c² = a² + b².

Substituting the values, we find c = √(7² + 5²)

= √(49 + 25)

= √74.

The foci are located at (h ± c, k), so the foci are approximately (√74, 0) and (-√74, 0).

Finally, to find the asymptotes, we use the formula y = ± (a/b) * x + k.

Substituting the values, we have y = ± (7/5) * x + 0, which simplifies to y = ± (7/5) * x.

Therefore, the vertices are (7, 0) and (-7, 0), the foci are approximately (√74, 0) and (-√74, 0), and the asymptotes are

y = ± (7/5) * x.

To know more about hyperbola visit:

https://brainly.com/question/19989302

#SPJ11

bob wants to see if drinking caffeine in your water can keep you awake longer. he finds 60 volunteers for his study. he fills 120 stainless steel bottles with water. in half the bottles he places 48 milligrams of caffeine (about as much as in a diet coke). you cannot taste the caffeine. he randomly assigns 10 students to drink 1 bottle of regular water at 8pm; 10 students to drink 1 bottle of caffeinated water at 8pm; 10 students to drink 2 bottles of regular water at 8 and 9 pm; 10 students to drink 2 bottles of caffeinated water at 8 and 9 pm; 10 students to drink 3 bottles of regular water at 8pm, 9pm, and 10pm; and 10 students to drink 3 bottles of caffeinated water at 8, 9, and 10 pm. no one knows which subject got which treatment. he watches the volunteers and records the times that they fall asleep and compares the sleep times for all the groups. stat 1430 recitation 2a experiments

20. what is the independent variable in this study? be careful. 21. how many treatment groups are there (count the control groups in this.)

22. what is the response variable?

23. make a drawing that shows how you can randomly assign the 60 people to the different treatments. tell who is in in which treatment. your method must be truly random. (hint: can statcrunch help you generate random numbers? and see!)

24. evaluate this experiment in terms of the 3 criteria listed in your lecture notes: (list the criteria first, then give your opinion.) one: two: three:

25. list at least one confounding variable in this study.

26. suggest an improvement for this study.

Answers

The results for the given statements of response variable, independent variable and improvement for this study are explained.

20. The independent variable in this study is the presence or absence of caffeine in the water consumed by the volunteers.

21. There are six treatment groups in this study, including the control groups.

22. The response variable in this study is the time at which the volunteers fall asleep.

23. To randomly assign the 60 people to the different treatments, you can use a random number generator. Assign a unique number to each person and use the random number generator to determine which treatment group they will be assigned to.

For example, if the random number is between 1 and 10, the person will be assigned to the group drinking 1 bottle of regular water at 8 pm. Repeat this process for all the treatment groups.

24. The three criteria for evaluating this experiment are:
  - One: Randomization - This experiment meets the criterion of randomization as the subjects were randomly assigned to different treatment groups.
  - Two: Control - This experiment also meets the criterion of control by having control groups and using regular water as a comparison to caffeinated water.
  - Three: Replication - This experiment does not explicitly mention replication, but having a sample size of 60 volunteers provides some level of replication.

25. One potential confounding variable in this study could be the individual differences in caffeine sensitivity among the volunteers. Some volunteers may have a higher tolerance to caffeine, which could affect their sleep times.

26. One improvement for this study could be to include a placebo group where volunteers consume water that appears to be caffeinated but does not actually contain caffeine. This would help control for any placebo effects and provide a more accurate comparison between the caffeinated and regular water groups.

Know more about the confounding variable

https://brainly.com/question/28450965

#SPJ11



Simplify each expression. Rationalize all denominators.

√32 / √2

Answers

The simplified expression (√32) / (√2) after rationalizing the denominator is 4√2.

To simplify the expression (√32) / (√2) and rationalize the denominator, we can use the properties of square roots.

First, let's simplify the numerator:

√32 = √(16 * 2) = √16 * √2 = 4√2

Now, let's simplify the denominator:

√2

To rationalize the denominator, we need to multiply both the numerator and the denominator by the conjugate of the denominator. In this case, the conjugate of √2 is (-√2):

√2 * (-√2) = -2

Multiplying the numerator and denominator by (-√2), we get:

(4√2 * (-√2)) / (-2)

Simplifying further:

= (-8√2) / (-2)

The negatives in the numerator and denominator cancel out:

= 8√2 / 2

Dividing both the numerator and denominator by 2, we have:

= (8/2) * (√2/1)

= 4√2

Therefore, the simplified expression (√32) / (√2) after rationalizing the denominator is 4√2.

learn more about denominator here

https://brainly.com/question/32621096

#SPJ11

let x1,x2,...,xn be a random sample of size n from the exponential distri- bution with rate λ. find a 95% confidence interval for λ based on the sample mean. leave your answer in terms of chi-square distribution critical values. (b) let x1,x2,...,x25 be a random sample of size 25 from the exponential distribution with rate λ. the observed sample mean is 3.75. find an exact 95% confidence interval for λ based on the sample mean.

Answers

The exact 95% confidence interval for λ based on the sample mean would be [1.948, 4.277].

To find an exact 95% confidence interval for λ based on the sample mean, we need to use chi-square distribution critical values. For a random sample n, the confidence interval is given by [tex][2 * \frac{n - 1}{X^{2} \frac{a}{2} } , 2 * \frac{n - 1}{X^{2} \frac{1 - a}{2} } ][/tex] where, Χ²α/2 and Χ²1-α/2 are the critical values from the chi-square distribution.

In this case, we have a random sample n = 25, and the observed sample mean is 3.75. To find the exact 95% confidence interval, we can use the formula and substitute the appropriate values:

[tex][2 * \frac{24}{X^{2}0.025 } , 2 * \frac{24}{X^{2}0.975 }][/tex]

Using a chi-square distribution table, we find:

Χ²0.025 ≈ 38.885

Χ²0.975 ≈ 11.688

Now, the formula becomes:

[tex][2 * \frac{24}{38.885}, 2 * \frac{24}{11.688}][/tex]

[1.948, 4.277]

Therefore, the exact 95% confidence interval for λ based on the sample mean would be [1.948, 4.277].

To know more about Chi-square distribution:

https://brainly.com/question/30764634

#SPJ4

a bus comes by every 15 minutes. the times from when a person arives at the busstop until the bus arrives follows a uniform distribution from 0 to 15 minutes. a person arrives at the bus stop at a randomly selected time. round to 4 decimal places where possible. the mean of this distribution is 7.5 correct the standard deviation is 4.3301 correct the probability that the person will wait more than 7 minutes is 0.8 suppose that the person has already been waiting for 2.3 minutes. find the probability that the person's total waiting time will be between 5.8 and 7 minutes 0.1812 incorrect 38% of all customers wait at least how long for the train? 8.25 incorrect minutes.

Answers

The probability that the person's total waiting time will be between 5.8 and 7 minutes is 0.08.

Probability is a branch of mathematics that deals with the likelihood of an event occurring. It quantifies the uncertainty associated with different outcomes in a given situation. The probability of an event is expressed as a number between 0 and 1, where 0 represents an impossible event and 1 represents a certain event.

In probability theory, the probability of an event A, denoted as P(A), is calculated as the ratio of the number of favorable outcomes to the total number of possible outcomes.

The probability that the person's total waiting time will be between 5.8 and 7 minutes can be calculated by finding the difference between the cumulative probabilities at 7 minutes and 5.8 minutes.

To do this, you can use the cumulative distribution function (CDF) of the uniform distribution.

The CDF of the uniform distribution is given by (x - a) / (b - a), where x is the waiting time, a is the lower bound (0 minutes in this case), and b is the upper bound (15 minutes).

To calculate the probability, you can subtract the CDF at 5.8 minutes from the CDF at 7 minutes:

CDF(7 minutes) - CDF(5.8 minutes) = (7 - 0) / (15 - 0) - (5.8 - 0) / (15 - 0) = 7/15 - 5.8/15 = 1.2/15 = 0.08

Therefore, the probability that the person's total waiting time will be between 5.8 and 7 minutes is 0.08.

To know more about probability visit:

https://brainly.com/question/14210034

#SPJ11



Solve triangle A B C using the given information. Round angle measures to the nearest degree and side measures to the nearest tenth.

a. b=10.2, c=9.3, m ∠A=26

Answers

To solve triangle ABC, we can use the Law of Cosines to find the missing angle and then use the Law of Sines to find the remaining side lengths.

Given information:
b = 10.2
c = 9.3
m ∠A = 26°

1. Use the Law of Cosines to find angle ∠B:
c^2 = a^2 + b^2 - 2ab * cos(∠C)
9.3^2 = a^2 + 10.2^2 - 2 * a * 10.2 * cos(∠C)
86.49 = a^2 + 104.04 - 20.4a * cos(∠C)

2. Use the Law of Sines to find the missing side lengths:
a/sin(∠A) = c/sin(∠C)
a/sin(26°) = 9.3/sin(∠C)
a = (9.3 * sin(26°)) / sin(∠C)

3. Substitute the value of a from step 2 into the equation from step 1:
86.49 = ((9.3 * sin(26°)) / sin(∠C))^2 + 104.04 - 20.4((9.3 * sin(26°)) / sin(∠C)) * cos(∠C)

4. Simplify the equation and solve for ∠C:
86.49 = (9.3^2 * sin(26°)^2) / sin(∠C)^2 + 104.04 - 20.4 * (9.3 * sin(26°)) / sin(∠C) * cos(∠C)
Multiply through by sin(∠C)^2 to clear the denominator:
86.49 * sin(∠C)^2 = 9.3^2 * sin(26°)^2 + 104.04 * sin(∠C)^2 - 20.4 * (9.3 * sin(26°)) * cos(∠C) * sin(∠C)

5. Rearrange the equation to isolate sin(∠C)^2:
86.49 * sin(∠C)^2 - 104.04 * sin(∠C)^2 = 9.3^2 * sin(26°)^2 - 20.4 * (9.3 * sin(26°)) * cos(∠C) * sin(∠C)
Combine like terms:
-17.55 * sin(∠C)^2 = 86.49 * sin(26°)^2 - 20.4 * (9.3 * sin(26°)) * cos(∠C) * sin(∠C)

6. Solve for sin(∠C):
sin(∠C)^2 = (86.49 * sin(26°)^2 - 20.4 * (9.3 * sin(26°)) * cos(∠C)) / -17.55
Take the square root of both sides to solve for sin(∠C):
sin(∠C) = ±sqrt((86.49 * sin(26°)^2 - 20.4 * (9.3 * sin(26°)) * cos(∠C)) / -17.55)

7. Use the inverse sine function to find ∠C:
∠C = sin^(-1)(±sqrt((86.49 * sin(26°)^2 - 20.4 * (9.3 * sin(26°)) * cos(∠C)) / -17.55))

8. Substitute the value of ∠C into the Law of Sines to find side a:
a = (9.3 * sin(26°)) / sin(∠C)

Note: The solution for ∠C may have multiple angles depending on the trigonometric functions used, so check all possible solutions to find the correct value for ∠C.

Know more about Law of Sines, here:

https://brainly.com/question/21634338

#SPJ11

The linear trend was estimated using a time series with 20 time periods. The forecasted value for time period 21 is

Answers

To estimate the linear trend, you should use a linear trendline. The formula for a linear trendline is: y = mx + b. Here, x is the time variable, and y is the variable that we want to predict.

Since the time series has 20 time periods, we can estimate the linear trend by fitting a line to the data. Then, we can use this line to forecast the value of y for time period 21.For example, suppose that the linear trend equation is:

y = 2x + 1. To forecast the value of y for time period 21, we plug in x = 21: y = 2(21) + 1 = 43. Therefore, the forecasted value for time period 21 is 43.

Know more about linear trendline here:

https://brainly.com/question/28589354

#SPJ11



A student tries to show that sin (A+B)=sin A+sin B is true by letting A=120° and B=240°. Why is the student's reasoning not correct?

Answers

The student's reasoning is not correct because the equation sin(A+B) = sinA + sinB does not hold true for all values of A and B.

To prove or disprove the equation, we can substitute the given values of A=120° and B=240° into both sides of the equation.

On the left side, sin(A+B) becomes sin(120°+240°) = sin(360°) = 0.

On the right side, sinA + sinB becomes sin(120°) + sin(240°).

Using the unit circle or trigonometric identities, we can find that sin(120°) = √3/2 and sin(240°) = -√3/2.

Therefore, sin(120°) + sin(240°) = √3/2 + (-√3/2) = 0.

Since the left side of the equation is 0 and the right side is also 0, the equation holds true for these specific values of A and B.

However, this does not prove that the equation is true for all values of A and B.

For example, sin(60°+30°) ≠ sin60° + sin30°

Hence, it is necessary to provide a general proof using trigonometric identities or algebraic manipulation to demonstrate the equation's validity.

To know more about equation refer here:

https://brainly.com/question/30710281

#SPJ11

explain how to compute the surface integral of a​ scalar-valued function f over a cone using an explicit description of the cone.

Answers

To compute the surface integral of a scalar-valued function f over a cone, we need to parameterize the cone's surface, evaluate f at each point, and integrate the product of f and the surface element.

To compute the surface integral of a scalar-valued function f over a cone using an explicit description of the cone, we need to parameterize the surface of the cone.

We need to define the cone explicitly by specifying its equation in terms of the variables x, y, and z. For example, a cone can be described by the equation z = k√(x² + y²), where k is a constant.

We need to parameterize the surface of the cone using two parameters, typically denoted by u and v. This involves expressing x, y, and z in terms of u and v.

Once we have the parameterization of the cone, we can compute the surface integral by evaluating the function f at each point on the surface and multiplying it by the magnitude of the surface element, which is given by the cross product of the partial derivatives of the parameterization.

We integrate the product of f and the surface element over the range of the parameters u and v to obtain the surface integral.

To compute the surface integral of a scalar-valued function f over a cone, we need to parameterize the cone's surface, evaluate f at each point, and integrate the product of f and the surface element.

For more such questions on surface integral

https://brainly.com/question/28381095

#SPJ8

suppose that a certain muffin shop has 310 ounces of dough and 220 ounces of sugar. it requires 3 ounces of dough and 2 ounces of sugar to make sugar cookies, while 4 ounces of dough and 3 ounces of sugar to make a chocolate chip cookie. how many cookies of each type should she make to use all the dough and sugar? equation editor equation editor sugar cookies.

Answers

To use all the dough and sugar, the muffin shop should make 60 sugar cookies and 50 chocolate chip cookies.

How many cookies of each type should she make to use all the dough and sugar?

Let's assume the number of sugar cookies made is 'x', and the number of chocolate chip cookies made is 'y'.

Given that it requires 3 ounces of dough and 2 ounces of sugar to make sugar cookies, and 4 ounces of dough and 3 ounces of sugar to make a chocolate chip cookie, we can set up the following equations:

Equation 1: 3x + 4y = 310 (equation representing the total amount of dough)

Equation 2: 2x + 3y = 220 (equation representing the total amount of sugar)

To solve these equations, we can use a method such as substitution or elimination. For simplicity, let's use the elimination method.

Multiplying Equation 1 by 2 and Equation 2 by 3, we get:

Equation 3: 6x + 8y = 620

Equation 4: 6x + 9y = 660

Now, subtracting Equation 3 from Equation 4, we have:

(6x + 9y) - (6x + 8y) = 660 - 620

y = 40

Substituting the value of y into Equation 2, we can find the value of x:

2x + 3(40) = 220

2x + 120 = 220

2x = 100

x = 50

Therefore, the muffin shop should make 50 chocolate chip cookies (x = 50) and 40 sugar cookies (y = 40) to use all the dough and sugar.

Learn more about chocolate chip cookies

brainly.com/question/23985280

#SPJ11

Other Questions
Fill in the table with the correct information about the anglo-american and the indic cultural regions. one of the most common types of software used in conjunction with a multi-dimensional database is online analytical processing (olap). The __________ expectancy involves whether putting effort into a task will lead to high performance. Where are the soft tissue structures that can be used to indicate joint effusion located on the pa wrist projection? Design a circuit to deliver a constant 1500 W of power to a load that varies in resistance from 10 to 30 . The ac source is 240 V rms, 50 Hz. Hcn is a weak acid (a=6. 201010) , so the salt, kcn , acts as a weak base. what is the ph of a solution that is 0. 0630 m in kcn at 25 c? What are three of the common physical and or chemical agents that adversely affect the body? Solve each equation for with 0 What is the volume of a rectangular prism that measures 5 inches long, 14 inches high and 7 inches wide? 1 point Courtney reads psychology books because she is fascinated by the subject. she really enjoys learning about the different approaches to psychology. in this scenario, courtney is driven by:________ Which component of the mind did sigmund freud describe as the most primitive because it served as the center of innate drives and seemed free from the restraints of the external world? A quantitative analyst, Selden, returns from a seminar in great excitement. At that seminar, Jack Jorrely, a well-known quantitative analyst at a national brokerage firm, discussed one of his new models in detail, and Selden is intrigued by the new concepts. He tests the model, and after making minor mechanical changes, produces some very positive results. Selden quickly announces to his supervisors and clients that he has developed a new model. They are impressed with his innovation and ability to add value. Selden's conduct is Notes Receivable differ from Accounts Receivable in that Notes Receivable ______. Multiple choice question. generally charge the borrowers interest from the day they are signed to the day they are collected do not have to be created for every new transaction, so they are used more frequently are noncurrent assets at the beginning of the year, manufacturing overhead for the year was estimated to be $1,052,700. at the end of the year, actual direct labor-hours for the year were 36,400 hours, the actual manufacturing overhead for the year was $990,000, and manufacturing overhead for the year was overapplied by $65,600. if the predetermined overhead rate is based on direct labor-hours, then the estimated direct labor-hours at the beginning of the year used in the predetermined overhead rate must have been Two parallel-plate capacitors, identical except that one has twice the plate separation of the other, are charged by the same voltage source. Which capacitor has a stronger electric field between the plates Which best explains why some viruses are capable of eliciting a chronic infection in the body? country in the world which has progressed economically despite lacking in natural resources ? how? assume on january 1, 2017, a wholly owned subsidiary sells to its parent, for a sale price of $132,000, equipment that originally cost $180,000. the subsidiary originally purchased the equipment on january 1, 2013, and depreciated the equipment assuming a 12-year useful life (straight-line with no salvage value). the parent has adopted the subsidiarys depreciation policy and depreciates the equipment over the remaining useful life of 8 years. the parent uses the equity method to account for its equity investment. Conduct a survey in a locality and collect data about how many of your friends like football, cricket,and both games.Then tabulate the following using cardinality relation of two sets.a. No of friends who like football and cricket.b. No of friends who don't like any of these two games.c. No of friends who like only one game. Final Project: Student Registration Create a GUI application that accepts student registration data. The GUI with valid data