Answer:
y = 2x - 200
Step-by-step explanation:
The function type that would model this relationship is linear because for each bracelet sold, the jazz band would increase their profit by $2. Since it has a consistent rate, it is linear. Using the slope-intercept formula of y = mx + b, where 'm' is the rate and 'b' is the initial value, you can use $2 for the rate or cost per bracelet and -$200 for the initial value or cost of supplies:
y = 2x - 200, where '2' is the cost per bracelet, 'x' the number of bracelets sold, '-200' is the cost for supplies and 'y' is the profit.
Answer:
the answer is d.
Step-by-step explanation:
as soon as you go to the theater, you HAVE to pay $5 in theater a, with two dollars for ONE snack bought, and it says two dollars PER one snack bought. therefore if x was 2, so if someone wanted to buy 2 snacks, then you would multiply by 2 to get the total cost, or y, for the snacks. answer d is the only one that has the correct numbers in the correct places for theater a and b.
hope this helps!
The expression D=23g shows the distance that Kurt can drive on a tank of gasoline.
Step-by-step explanation:
Given,
Distance covered by Kurt's car = 23 miles per gallon of gasoline
Kurt fills up tank of his car with g gallons.
Number of gallons in car's tank = g gallons
Distance covered by g gallons = D = Distance covered by one gallon * Number of gallons
D = 23*g
D = 23g
The expression D=23g shows the distance that Kurt can drive on a tank of gasoline.
Keywords: distance, multiplication
Learn more about multiplication at:
#LearnwithBrainly
Answer:
-2, -5, 2, then 5
Step-by-step explanation:
Answer:
Step-by-step explanation:
programs can be written in multiply languages. for this solution I'll be writing in C++.
#include<iostream> // this is called the preprocessor definition
using namespace std;
int main() //the main function
{
int num, product; //declaration of the variables
cout << "enter the whole number";
cin >> num;
product = num * 12;
cout << product; // displaying the final results
return 0;
}