when ther is no number
that we can use it
Translate the following phrase into a variable expression. Use the letter d to name the variable. …7 times the distance
A variable is a letter that represents a number. An expression that contains at least one variable is called variable expression, also called algebraic expression. A variable expression has one or more terms. A term is a number, a variable, or a product of numbers and variables. For example,3(x^2)y + 2xy + x - 7 is a variable expression, where you have 4 terms.When working with variable expression, you often use the substitution principle:If a = b, then a may be replaced by b in any expression.The set of numbers that a variable may be represent is called replacement set, or domain, of the variable. To evaluate a variable expression, you replace each variable with one of its values and simplify the numerical expression that results.Example: Evaluate the expression 2x - 4y for x = 5 and y = -9.Solution:2x - 4y= 2(5) - 4(-9)= 10 + 36=46
(x + 9)
it is the number you would use to solve the problem
we will use the variable 's' to represent your savings: 2s+10
In this case, you'll have to use a variable. Variables are basically a symbol which stands for a number. Let's use the variable "m". You're searching for 58 less than a number. That is basically just "word form" for a number, or a variable, minus 58. So if we use the variable "m", the expression will be m-58. Remember that you can use any variable you want.
You could use an analogy to best explain the expression writing is rewriting. You could say it is like Deja Vu from your head to the paper.
substitution
x + 138
Assuming you call your number "n", the expression would be "14n". You can replace "n" with whatever variable you want to use.
We need a for loop because the while and do-while loops do not make use of a control variable. Although you can implement a counter inside a while or do-while loop, the use of a control variable is not as self-evident as it is in a for loop. Aside from the use of a control variable, a for loop is largely the same as a while loop. However, it is quite different to a do-while loop, which always executes at least one iteration of the loop before evaluating the conditional expression. In a for and while loop, the conditional expression is always evaluated before entering the loop, which may result in the loop not executing at all.