Consider $x_0 \le x \le x_1$ and $y_0 \le y \le y_1$ . I'm looking for a formula that indicates interval of $xy$ . For example if we have $-1\le x\le 2 $ , how we can understand interval of $x^2 - 2x$ without graphing it . I think if there is a general formula , it can be very helpful .
2026-02-23 18:43:03.1771872183
Product of intervals
1.1k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in ARITHMETIC
- Solve this arithmetic question without algebra
- Is division inherently the last operation when using fraction notation or is the order of operation always PEMDAS?
- Upper bound for recursion?
- Proving in different ways that $n^{n-1}-1$ is divisible by $(n-1)^2$.
- Meaning of a percentage of something
- Compare $2^{2016}$ and $10^{605}$ without a calculator
- The older you are, the richer you get?
- Easy question which doesn't make sense to me!
- Calculating diminishing interest amount
- Multiplication Question
Related Questions in INTERVAL-ARITHMETIC
- Notation Convention for integer in a certain range
- $I_1, I_2, I_3$ intervals of even length, such that intersection is odd length
- Is there a term for the interval [-1.0, 1.0]?
- Constructing a closed interval from open intervals of real numbers?
- Someone can explain this interval?
- Given an interval around each rational number: How to find a real number which is in none of these intervals?
- evaluation of the sum $\sum_{a=1}^{p-1} \left\lfloor \frac{\left\lfloor{v/p}\right\rfloor-a}{q}\right\rfloor$
- Intuition for interval subtraction
- choosing error bounds for factors of a product so the product falls within a given error bound
- What is the difference between discrete interval and continous interval
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
Wikipedia says:
This image of a set $X$ under a function $f$ is usually written as $f(X)$ and is formally defined as
$$f(X)=\{f(x)|x\in X\}$$
So you want know the image of the interval $[-1,2]$ under the continuous function $x\to x^2-2x$ and the image of the rectangle $[x_0,x_1]\times [y_0,y_1]$ under the continuous function $(x,y)\to xy$.
Your phrase "interval of $x^2-2x$" is not used for this and may not be understood.
But it can be shown that
and
From this follows
If the image $f(X)$ of $X$ under $f$ is an interval then we have $$f(X)=[\min(f(X)),\max(f(X))]$$
So to find the left and the right endpoint if the interval we have to find the minimum and the maximum of $f$ in $X$.
If f is a differentiable function from $[a,b]$ we know that its extremal values (= minimum or maximum values) are either on the endpoints $a$ or $b$ of the interval $X=[a,b]$ or at one of its local extremal points in the inner of $X$. These points can be found by using the derivative.
So for $$f(x)=x^2-2x$$ we have $$f'(x)=2x-2$$ which is $0$ for $x=1$.
So $$\min(f[-1,2])=\min\{f(-1),f(0),f(2)\}=\min\{3,-1,0\}=-1$$ and $$\max(f[-1,2])=\max\{f(-1),f(0),f(2)\}=\max\{3,-1,0\}=3$$
and therefore
$$f([-1,2])=[-1,3]$$
For the two dimensional differential function $$p(x,y)=xy$$ similar statements hold. But even without differential calculus one can show that
$$p([x_0,x_1]\times[y_0,y_1])=[\min\{x_0y_0,x_0y_1,x_1y_0,x_1y_1\},\max\{x_0y_0,x_0y_1,x_1y_0,x_1y_1\}]$$
Other functions can be found in this wiki article about interval arithmetic where intervals are used to find bounds for rounding errors in computations.