
Greater Than Symbol (>): Meaning, Usage & Examples
The greater-than sign (>) sits quietly on every keyboard, yet it carries weight in math class, code editors, and command-line terminals alike. It has denoted inequality since at least the 1560s, when mathematicians needed a clean way to show that one value beats another. Understanding how ‘>’ works across different contexts prevents confusion for students learning equations and coders writing comparisons in the same breath.
Unicode code point: U+003E ·
ASCII value: 62 ·
Common use: inequality comparison ·
Paired symbol: less-than ‘<‘ ·
Variant with equality: ≥
Quick snapshot
- Whether Harriot independently invented > or adopted it from earlier works
- Exact origin timeline before the 1560s records
- 1560s — first recorded use in mathematical documents (Story of Mathematics)
- 1631 — Harriot’s work published, standardizing < and > (Helping with Math)
- 1963 — ASCII standard codified > as U+003E (Story of Mathematics)
- Programming tools will keep adapting > and >> for new syntax needs
- Unicode continues adding more precise variants (≧, ≫, ≵)
Below is a key-reference table summarizing the most essential attributes of the greater-than sign.
| Attribute | Value |
|---|---|
| Symbol | > |
| Meaning | Greater than |
| Opposite | < (less than) |
| Equality variant | ≥ |
| Wikipedia page | Greater-than sign |
What does ‘>’ stand for?
The greater-than sign (>) indicates that the value on the left side exceeds the value on the right side in mathematics. In an inequality like 5 > 3, the five is larger, so the symbol opens toward it and points to the three. The Wikipedia entry on the greater-than sign confirms this as the standard interpretation across educational contexts worldwide.
History and origin
The greater-than sign first appeared in recorded mathematical documents in the 1560s, marking the beginning of its formal role in expressing inequalities. By 1631, when Thomas Harriot’s treatise was posthumously published, the symbols < and > gained wider recognition as a standardized pair for denoting less-than and greater-than relationships. Helping with Math notes that Pierre Bouguer added underlined variants (>= and <=) in 1734 to indicate “greater than or equal to” and “less than or equal to” respectively. ASCII later codified the standalone > as character U+003E in 1963.
Basic meaning in math
At its core, ‘>’ expresses a relationship of magnitude between two numbers or expressions. The symbol acts like an arrow pointing left, drawing attention to the smaller side. Smartick explains that the wide opening always faces the larger value while the pointed tip indicates the smaller one. The greater-than sign works consistently with negative numbers, so -2 > -10 because negative two sits higher on the number line than negative ten.
Once you internalize that the symbol’s opening faces the larger number, you can read any inequality at a glance without calculating. This visual shorthand saves time in problem-solving and testing scenarios.
What does ‘<' mean?
The less-than sign (<) performs the opposite function, signaling that the left value falls short of the right one. Where 7 > 5 reads “seven is greater than five,” the expression 3 < 9 states “three is less than nine.” The PrepScholar comparison guide notes that the less-than sign resembles a rotated letter L, a detail that helps distinguish it from the greater-than sign in everyday use.
Opposite of greater than
These two symbols function as a matched pair in every mathematical and programming context. The “L” shape of < visually echoes “less than,” while the greater-than sign’s appearance diverges from that letterform, making the distinction clearer for new learners. Story of Mathematics emphasizes this visual relationship as a key mnemonic anchor.
Usage examples
- 12 < 15 (twelve is less than fifteen)
- -4 < 2 (negative four is less than two)
- Temperature < 0 means freezing conditions
The pattern holds across integers, decimals, fractions, and negative numbers. Club Z Tutoring provides worked examples showing how inequalities behave with negative values, reinforcing that the relationship depends on actual position on the number line rather than surface sign.
Inequalities flip direction when multiplied or divided by negative numbers. If you have -3x > 9 and divide both sides by -3, the sign reverses to x < -3. This rule trips up many students who forget that negative multiplication changes the relationship entirely.
Which <> means greater?
The greater-than sign (>) points to the right, visually indicating that the value on its left surpasses the value on its right. The less-than sign (<) points left, marking the smaller side. Story of Mathematics documents the “alligator mouth” mnemonic: the symbol resembles an open jaw ready to devour the larger number, with the open side facing the bigger value.
> is greater than
- 8 > 5 (the alligator eats the larger number, eight)
- 100 > 99 (the pointy end faces ninety-nine, the smaller value)
- In text: “Cats > Dogs” (cats are preferred over dogs)
< is less than
- 2 < 7 (the open side faces seven, the larger number)
- -5 < 0 (negative five sits below zero on the number line)
A quick mental test: if the symbol resembles the first letter of “greater” (G) turned sideways, it means greater than. The PrepScholar guide notes this L-based distinction as one of the most reliable memory aids for students who struggle with the symbols’ orientation.
Students who master the alligator mnemonic gain speed in reading inequalities, but they sometimes struggle when the symbols appear vertically (in programming stack traces) rather than horizontally. Practice with both orientations builds true fluency.
How to use <> correctly?
Using the greater-than sign correctly requires matching the symbol to the relationship you want to express. In mathematics, > shows that one value exceeds another. In programming, > typically performs a boolean comparison and returns true or false based on whether the condition holds.
In equations
Inequalities appear in algebraic expressions, word problems, and coordinate geometry. When solving 2x + 3 > 7, you isolate x by subtracting 3 (giving 2x > 4) and then dividing by 2 (giving x > 2). The solution tells you that any x value greater than two satisfies the original inequality. Club Z Tutoring includes practice problems with negative coefficients that reinforce correct handling of inequality signs during algebraic manipulation.
With equals for ≥ ≤
The greater-than sign gains an equality bar to form ≥ (greater than or equal to), meaning the left side is larger or identical to the right side. This variant appears frequently in statistics, calculus bounds, and programming conditions where “at least” or “no more than” semantics apply. The Unicode value U+2265 encodes ≥, while the “not greater than” symbol ≯ uses U+226F.
The table below lists the primary greater-than variants available in Unicode.
| Symbol | Name | Unicode |
|---|---|---|
| ≥ | Greater than or equal to | U+2265 |
| ≫ | Much greater than | U+226B |
| ≧ | Greater than over equal to | U+2267 |
| ≯ | Not greater than | U+226F |
| ≷ | Greater-than or less-than | U+2277 |
| ⋗ | Greater-than with dot | U+22D7 |
Fourteen Unicode code points cover greater-than variants, ranging from geometric approximations to specialized set-theory symbols. Wikipedia maintains a comprehensive table of these variants for reference.
For equation writing: use > for strict inequalities and ≥ when equality is acceptable. For programming: check your language’s documentation, since syntax varies for greater-than-or-equal comparisons (.GT. in Fortran versus >= in C-family languages).
What’s the difference between ‘>’ and ‘>>’?
The single greater-than sign (>) and the double variant (>>) share visual roots but carry entirely different meanings depending on context. In mathematics, >> approximates the “much greater than” symbol ≫ (U+226B), indicating a ratio of at least ten to one. In programming, the distinction becomes sharper and context-dependent.
Math vs shell redirect
In mathematical writing, 5 >> 1 suggests that five is vastly larger than one. In Unix shell scripting, however, a single > redirects output to a file, overwriting its contents, while >> appends output to the existing file. YouTube tutorials demonstrate this distinction with live terminal examples showing how echo “hello” > file.txt differs from echo “hello” >> file.txt in practical terms.
Programming contexts
The >> operator takes on multiple roles in programming languages. In C, C++, and Java, >> performs a right-shift operation on binary numbers, moving bits to the right to divide by powers of two. The Wikipedia entry on the greater-than sign confirms that >> serves as both a right-shift operator and an input-stream extraction operator in C++.
- C/C++/Java: 8 >> 1 equals 4 (right-shift divides by two)
- C++: cin >> variable extracts input from stream
- Python: >> serves no comparison purpose; > alone handles greater-than checks
- Shell scripts: > overwrites files, >> appends to them
Confusing >> across contexts leads to bugs. A Python developer writing if x >> y might accidentally trigger bit-shifting instead of comparison if they forget to use only >. Always verify your language’s operator precedence for mixed > and >> expressions.
How to type the greater than symbol
Entering the greater-than sign on a keyboard involves either a direct key press or a numeric Alt-code sequence. The method varies slightly between Windows, macOS, and mobile devices, but all follow the same Unicode foundation.
Windows method
- Greater than (>): Press Shift + . (the period key)
- Greater than or equal to (≥): Hold Alt and type 8805 on the numeric keypad
- Much greater than (≫): Hold Alt and type 8811 on the numeric keypad
The Webnots keyboard reference confirms these Alt codes work universally across Windows regional settings. Num Lock must be enabled for the numeric keypad to register the codes correctly.
macOS method
- Greater than (>): Press Shift + .
- Greater than or equal to (≥): Press Option + =
- Much greater than (≫): Use Character Viewer (Control + Command + Space)
Mobile and accessibility
- iOS/Android: Long-press the comma key to reveal > and < options
- Screen readers: VoiceOver reads “greater than” for > and “greater than or equal to” for ≥
Unicode Alt codes remain consistent across Windows configurations, though regional keyboard layouts may affect how certain symbols display. The symbol meaning stays invariant across regions, even as input methods differ.
Clarity check
Confirmed
- Standard mathematical usage as inequality since the 1560s
- Thomas Harriot’s 1631 publication introduced formal < and >
- Unicode U+003E encodes the basic greater-than sign
- > functions as comparison operator across BASIC, C-family, and Lisp languages
- Alligator mnemonic: wide side points to the larger number
- Fortran uses .GT. as the greater-than operator
Unclear or context-dependent
- Whether Harriot independently invented > or adopted earlier notation
- Precise timeline for > usage before the 1560s
- Which specific shell environment interprets >> differently
Expert perspectives
The less-than sign and greater-than sign always ‘point’ to the smaller number.
— Wikipedia Editors (Encyclopedia contributors)
The large opening always points to the greater value, and the smaller end, the tip, toward the smaller value.
— Smartick Team (Mathematics educators)
Because the greater than sign does not look like an L, it cannot be ‘less than.’
— Story of Mathematics (Math blog)
Related reading: effect vs. affect · APA referencing generator
In math and programming tutorials, the greater than symbol > pairs seamlessly with greater than less than symbols to illustrate inequality directions and logic.
Frequently asked questions
What is the greater than or equal to symbol?
The greater than or equal to symbol (≥) combines the greater-than sign with a horizontal equality bar. It indicates that the left value is either larger than or identical to the right value. Unicode U+2265 encodes this symbol, and you can type it on Windows with Alt + 8805 or on macOS with Option + =.
How to copy greater than symbol?
Select the > character on any webpage and press Ctrl+C (Windows) or Command+C (macOS) to copy it. Alternatively, open a text editor, press Alt + 0062 on the numeric keypad for the plain > symbol, or search “greater than sign copy” to find pre-formatted symbols in character maps.
Where is greater than symbol on keyboard?
On standard QWERTY keyboards, the greater-than sign (>) shares the period key with the question mark. Press Shift + Period to produce > on Windows and macOS. On most international layouts, the same key combination works without modification.
What does greater than symbol example look like?
An example: 10 > 4. The symbol opens toward the ten (larger value) and points to the four (smaller value). In programming: if (score > threshold) triggers a condition when score exceeds threshold. The visual orientation remains consistent across all contexts.
What is not greater than symbol?
The “not greater than” symbol (≯) uses U+226F and indicates that the left value does not exceed the right. The “much greater than” symbol (≫) uses U+226B and suggests a ratio of at least 10:1, according to Wikipedia.
How to remember greater than vs less than?
Two effective mnemonics exist. First, the alligator mouth: the symbol’s open side faces the larger value like an alligator ready to eat bigger numbers. Second, the L-test: the less-than sign (<) resembles a rotated letter L, while the greater-than sign does not, so anything that does not look like an L must be greater than.
What is less than or equal to symbol?
The less than or equal to symbol (≤) mirrors the greater than or equal to symbol but with the orientation reversed. It shows that the left value is smaller than or identical to the right value. Unicode U+2264 encodes ≤, and Alt + 8804 produces it on Windows keyboards.
For students tackling inequalities in class, the takeaway is straightforward: the symbol’s open side always faces the larger number. For developers writing comparisons in code, the rule is equally clear: verify whether your language uses > for comparison, >> for bit-shifting, or stream redirection before debugging a stubborn logic error.