When it doesn’t look like a U anymore and is upside down
Looking at an equation than when x is negative
The required maximum value of the function C = x - 2y is 4.
Given that,
The function C = x - 2y is maximized at the vertex point of the feasible region at (8, 2). What is the maximum value is to be determined.
<h3>What is the equation?</h3>
The equation is the relationship between variables and represented as y =ax +m is an example of a polynomial equation.
Here,
Function C = x - 2y
At the vertex point of the feasible region at (8, 2)
C = 8 - 2 *2
C= 4
Thus, the required maximum value of the function C = x - 2y is 4.
Learn more about equation here:
brainly.com/question/10413253
#SPJ1
Answer:
slope =-1
Step-by-step explanation:
i dont think there is any steps for this problem ;-;
Answer:
x=11
Step-by-step explanation:
The switch case works like an if or if-else, where each of the cases are conditionals. Here we have 7 cases and we know that our variable begins with x=5.
First, it enters to case 5 because of x=5, so x+=3, this means we add 3 to the actual value of the variable ⇒ x=8.
At this point, if there's not break the program continues to the next case, executing the statements until a break or the end on the switch is reached.
In this order, the x = 8 and next we add 1 (case 6) ⇒ x=9. We add 2 (case 7) x+=2 ⇒ x=10. Then we rest 1 (case 8) ⇒ x=9 and then we add 1 again as in case 9 ⇒ x=11.