boundedlength
Boundedlength is a term used in mathematics and computer science to describe a property of a collection of objects where the length of each object does not exceed a fixed upper bound. The bound may be a constant or a function depending on external parameters, but in the basic sense the bound is fixed for the set under consideration. When the objects are strings over a finite alphabet, bounded length implies finiteness: only finitely many strings exist with length at most the bound, so the language is finite.
Formally, a language L over a finite alphabet Σ has bounded length if there exists a nonnegative
Separately, the term bounded language has a related but distinct meaning in formal language theory: a language
Examples: L = {a^n b^n | 0 ≤ n ≤ 5} has bounded length, since every string has length 2n
Applications include fixed-size message formats in networking, fixed-width fields in data encoding, and worst-case resource estimation
See also: finite language, regular language, length, boundedness.