For example a step function: $$f(x)=\begin{cases}\phantom{-}1, & \text{if }\: x>0 \\ -1, & \text{if }\: x<0 \end{cases}$$ or a function that is two functions combined: $$f(x,y)=\begin{cases}xy, & \text{if }\:x>0 \\[1ex] \dfrac{y}{2x}, & \text{if }\:x<0 \end{cases}$$ Is there a name for functions like this that require a case statement to write out?
2026-04-12 23:36:58.1776037018
Name of functions that can't be written in as a simple equation.
193 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in FUNCTIONS
- Functions - confusion regarding properties, as per example in wiki
- Composition of functions - properties
- Finding Range from Domain
- Why is surjectivity defined using $\exists$ rather than $\exists !$
- What are the functions satisfying $f\left(2\sum_{i=0}^{\infty}\frac{a_i}{3^i}\right)=\sum_{i=0}^{\infty}\frac{a_i}{2^i}$
- Lower bound of bounded functions.
- Does there exist any relationship between non-constant $N$-Exhaustible function and differentiability?
- Given a function, prove that it's injective
- Surjective function proof
- How to find image of a function
Related Questions in NOTATION
- Symbol for assignment of a truth-value?
- Does approximation usually exclude equality?
- Is division inherently the last operation when using fraction notation or is the order of operation always PEMDAS?
- Question about notation $S^c$
- strange partial integration
- What does Kx mean in this equation? [in Carnap or Russell and Whitehead's logical notation]
- Need help with notation. Is this lower dot an operation?
- What does this "\" mathematics symbol mean?
- Why a set or vector start counting from a negative or zero index?
- How to express a sentence having two for all?
Related Questions in TERMINOLOGY
- The equivalent of 'quantum numbers' for a mathematical problem
- Does approximation usually exclude equality?
- Forgot the name of a common theorem in calculus
- Name of some projection of sphere onto $\mathbb{R}^2$
- What is $x=5$ called??
- Is there a name for this operation? $f(a, b) = a + (1 - a)b$
- When people say "an algebra" do they always mean "an algebra over a field"?
- What is the term for "in one $n$-space"?
- The product of disjoint cycles
- What about the 'geometry' in 'geometric progression'?
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?
Short Answer
The examples in the question are piecewise functions or piecewise-defined functions. There is not, to my knowledge, a universally accepted term which covers every possible function defined in cases, though the term casewise function would likely be understood..
Long Answer
I am not aware of a commonly used term which describes any function which is defined by different formulae on different sets. That being said, I think that the terms casewise function or casewise-defined function would get the job done—I am not aware of either term appearing in the literature anywhere, and it may very well be my own invention, but, again, I think that the terms would be understood in the intended fashion. Wikipedia also suggests that such a function could be described as "defined by cases", or may be called a hybrid function. In the comments below, bof suggests the alternative split function.
However, the examples given in the question are more specific than a function which is defined over arbitrary subdomains: they are piecewise functions, or piecewise-defined functions (see [1], [2]). A piecewise function is a function which is defined by different formulae on a sequence of disjoint intervals (including possibly singleton points, which are a kind of degenerate interval, i.e. $\{x\} = [x,x]$). Using some extra notation:
In short, the domain of a piecewise function is broken into a sequence of "pieces" (intervals), and the function itself is defined differently on each piece. Note that the codomain could be any space, but it is, perhaps, easier to think about real-valued functions.
There are examples of casewise-defined functions which are not piecewise-defined, at least as the term has been defined above. For example, the characteristic function of the rationals, i.e. $$ \chi_{\mathbb{Q}}(x) := \begin{cases} 1 & \text{if $x\in\mathbb{Q}$, and} \\ 0 & \text{otherwise.} \end{cases} $$ Because $\mathbb{Q}$ cannot be written as the disjoint union of a finite number of intervals, this function is not piecewise-defined, though it is certainly defined by cases.
I'll also note, for the sake of completeness, that you are unlikely to be misunderstood if you say that the characteristic function of the rationals is piecewise-defined, and I am certain that you could find authors who would use this terminology.