answersLogoWhite

0


Best Answer

Any value of x which causes the denominator to equal zero.

It's kind of vague, but if you mean the denominator to be (x raised to the 4th power), then x=0 must be excluded. If you mean (x + 4) then x=-4 will make the denominator equal zero, and if you mean (x-4) then x=4 will make it zero.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the values of the variable that must be excluded from the domain x plus 8 over x 4?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Algebra

To evaluate a variable expression you must do what to values for the variable?

You must substitute values for the variable.


What equation is true for some values of its variable and is not true for others?

No equation can have that property. It cannot be an equation if it is not true. If necessary, the domain must be amended. An equation can have different forms over different parts of its domain.


How do I determine the domain and the equation of the vertical asymptote with the equation f of x equals In parentheses x plus 2 end of parentheses minus 1?

The domain of the function f(x) = (x + 2)^-1 is whatever you choose it to be, except that the point x = -2 must be excluded. If the domain comes up to, or straddles the point x = -2 then that is the equation of the vertical asymptote. However, if you choose to define the domain as x > 0 (in R), then there is no vertical asymptote.


In a linear equation the independent variable increases at a constant rate while the dependent variable decreases at a constant rate the slope of this line is?

The slope is negative. This just means that your x-values (independent) are increasing (which is usually the case). Such as 0,1,2,3,4,5. While the y-values (dependent) are decreasing. such as -5,-4,-3,-2,-1,0. Since the y-values are decreasing, this must mean the slope has to be negative.


What is the advantage of simplification of boolean expression?

It will help us to In SOP standard form, every variable in the domain must appear in each term. This form is useful for constructing truth tables or for implementing logic in PLDs.

Related questions

What are the values of the variable that must be excluded from the domain x plus 8 over x - 4?

12


To evaluate a variable expression you must do what to values for the variable?

You must substitute values for the variable.


What equation is true for some values of its variable and is not true for others?

No equation can have that property. It cannot be an equation if it is not true. If necessary, the domain must be amended. An equation can have different forms over different parts of its domain.


What does relevant domain mean?

The relevant domain is the set of values that the variable in question can take. Some variables, such as age or length, for example, cannot be negative; some variables, such as the number of children in a class must be whole numbers.


How can you tell if a table of values represents a function?

If all the values of the "independent" variable (x) are different then it is a function.If there are any repeats of the independent variable, the corresponding dependent variable, y, must be the same.If all the values of the "independent" variable (x) are different then it is a function.If there are any repeats of the independent variable, the corresponding dependent variable, y, must be the same.If all the values of the "independent" variable (x) are different then it is a function.If there are any repeats of the independent variable, the corresponding dependent variable, y, must be the same.If all the values of the "independent" variable (x) are different then it is a function.If there are any repeats of the independent variable, the corresponding dependent variable, y, must be the same.


To evaluate a variable you must values for the variable and then calculate the result?

No. To evaluate a variable, you simply take its value. When you assign a value to a variable, the evaluation of that operation is the value of the variable after assignment. There is no calculation required to evaluate a variable, unless that calculation is part of the right-hand operand of an assignment operation, in which case the calculation is evaluated first and the result of that evaluation (the value) is then assigned to the variable which is then evaluated.


When do you declare a variable method and a class final?

When There is No Need to Change the Values of the Variables In Entire lifetime of That variables then we must use that Variable as Final Variable.


What is a continuous independent variable?

A variable is something that can take different values. These values may be qualitative (colour, gender, favourite singer etc) or quantitative. A continuous variable must be quantitative such that it can take all values between its lowest (minimum) and highest (maximum). The variable is independentif its value is not affected by the value of any other variable under consideration.


A discrete variable may assume fractional or decimal values but they must have distance between them?

True


What is the difference between the domain and the range?

Domain is the x-axis and range is the y-axisThe domain is all the x-values that a function that take on, and the range is all the y-values that it can be. For instance, if you were given a set of coordinates such as {(2,3), (4,1), and (-9,5)}, you domain would be (-9, 2, 3) for the x-values, and your range would be (1,3,5) for the y-values. If you have to find domain and range for a function, domain typically being found first, you must think of all the possible x-values that could satisfy that equation. If there is a square root, you must ensure that the values do not make that section of the equation negative, and in other cases you must make sure you do not divide by zero. You can then find the range by making a graph or a chart.Domain is/are the value(s) which go under a rule (function of x) and the range is/are the value(s) you get out.


How do you find a mathematical domain?

The domain of a function is just all the x-values that have a corresponding y-value. Typically, you need to check for discontinuities or vertical asymptotes. For example, any x value that causes the denominator of a fraction to be 0 must be excluded from the domain, since you can't divide by 0. A simple case would be f(x) = 1 / x If x = 0 , the denominator is 0 and the function is undefined; all other values of x have a corresponding value for f(x), so the domain would be x < 0 and x > 0, or (-∞, 0) U (0, ∞). >>M.T.<<


Why must numeric values be assigned to variables when comparing results?

In order to compare any two values, both values must be stored somewhere otherwise it would be impossible for the machine to refer to those values let alone operate upon them. Typically we store variables in main memory, however values can also be stored directly in the machine's registers. These are known as register variables and the only practical difference between a register variable and an ordinary variable is that we cannot take the memory address of a register variable (because it has no address to take).If we can take the address of a variable then that variable is said to have identity because it exists in memory and we can identify it solely by its address. When comparing values that have identity, we can either compare the values themselves or we can compare their identities. The latter helps us determine whether two values are the same variable or not.The address of a variable may or may not be known at compile time. If the address is known at compile time then we can name the variable and refer to it by either its name or its address. Variables generated at runtime are anonymous and can only be referred to by their address (which we must store in another variable known as a pointer variable). Conversely, register variables must always be named, but they have no identity.Regardless of whether a variable has a name, an identity, or both, the machine simply cannot operate upon values without using variables.