Signalpress News Pulse Go
SignalPress.us Signalpress News Pulse Guides
Blog Business Local Politics Tech World

Greater Than Less Than – Symbols, Mnemonics and Examples

James Owen Reed Walker • 2026-04-10 • Reviewed by Maya Thompson

Greater than and less than symbols form the foundation of mathematical comparison. These inequality operators appear everywhere—from elementary school math to advanced programming logic. Understanding > and < correctly matters for anyone working with numbers, data, or code. This guide explains their meanings, provides memorable techniques for telling them apart, and shows practical examples across mathematics and computer science.

The greater than symbol (>) and less than symbol (<) serve as shorthand for comparing values. Rather than writing "five is greater than three," mathematicians simply write "5 > 3.” This compact notation streamlines calculations and makes complex relationships easier to express. The symbols have remained consistent across centuries, now standardized through ASCII and Unicode to ensure universal recognition in print, digital documents, and programming languages.

What Do Greater Than and Less Than Symbols Mean?

The greater than sign (>) indicates that the value on the left exceeds the value on the right. The less than sign (<) shows the opposite: the left value is smaller than the right. Both symbols point toward the smaller number, with the open end always facing the larger value. This consistent rule makes them reliable across all contexts where comparison is needed.

>
Greater Than
Left value exceeds right value
<
Less Than
Left value is smaller than right
Greater Than or Equal
Left value meets or exceeds right
Less Than or Equal
Left value meets or falls below right

Key Insights About Inequality Symbols

  • The open end of each symbol always faces the larger number
  • The point always indicates the smaller value
  • These symbols work the same in mathematics and computer programming
  • The alligator trick helps children remember directionality
  • Unicode and ASCII standards ensure consistent display across platforms
  • Extended versions include ≥ (greater than or equal) and ≤ (less than or equal)

Symbol Reference Table

Symbol Name Unicode ASCII Code Meaning
> Greater Than U+003E 62 Left value exceeds right value
< Less Than U+003C 60 Left value is smaller than right
Greater Than or Equal U+2265 Left meets or exceeds right
Less Than or Equal U+2264 Left meets or falls below right
Not Equal U+2260 Values are not equivalent

How to Remember Greater Than vs Less Than

Remembering which symbol means what trips up many learners. Fortunately, several proven mnemonics make this easier. The most popular approach uses an alligator to visualize the comparison, while alternative methods appeal to different learning styles.

The Alligator Trick for Children

The alligator method treats each symbol as a hungry alligator with its mouth open. The creature always faces the larger number because it wants to eat the bigger meal. When comparing 7 and 3, the alligator’s mouth opens toward 7 (7 > 3). When comparing 2 and 5, the mouth opens toward 5 (2 < 5).

Teachers often have students draw alligator teeth on the symbols or say the phrase “alligator eats the bigger number” aloud. Physical activities help reinforce the concept—children might hold up their hands to form the shapes or compare groups of classroom objects like pencils and erasers.

Teaching Tip

Combine the alligator visual with saying the statement out loud. For “5 > 3,” say “five is greater than three” rather than just “five greater than three.” Reading the full phrase builds number sense alongside symbol recognition.

Alternative Mnemonic Methods

Some educators prefer alternatives to the alligator approach. The L Method works well for students who think more abstractly. Rotate the less-than symbol 90 degrees clockwise and it forms a capital L, which stands for “less than.” The greater-than symbol, rotated, resembles nothing familiar, so it must mean the opposite.

The dots method adds visual markers: two dots go at the open end (larger side) and one dot at the point (smaller side). The number line approach links the symbols to spatial reasoning—< points toward the left side of a number line where smaller values sit, while > points right toward larger values.

Learning Styles Matter

Research suggests pairing visual mnemonics with verbal explanations. Reading “5 < 9" as "five is less than nine" builds conceptual understanding beyond memorizing shapes. This matters especially when students encounter inequalities in algebra, where symbols appear in abstract equations rather than comparing concrete numbers.

Examples of Greater Than and Less Than

Concrete examples clarify how these symbols work in practice. Whether comparing integers, decimals, fractions, or variables, the rule remains consistent: the open end faces the larger value.

Basic Number Comparisons

Simple comparisons between whole numbers demonstrate the symbols clearly. The expression 8 > 5 reads “eight is greater than five,” while 3 < 10 reads "three is less than ten." These work the same way with any numbers: 15 > 12, 6 < 9, and 100 > 99 all follow the same pattern.

Negative numbers add complexity but follow the same logic. On a number line, values to the right are greater than those to the left. This means -2 > -5 because -2 sits to the right of -5, even though both are negative. Similarly, -7 < -3 because -7 appears further left.

Inequalities with Variables

Algebraic inequalities extend these symbols to unknown values. The expression x > 4 means x can be any value greater than 4 (5, 6, 7, 100, etc.). The inequality y ≤ 10 permits y to be 10 or any smaller number. These ranges describe infinite sets of possible solutions rather than single answers.

Solving inequalities sometimes requires reversing the direction. When multiplying or dividing both sides by a negative number, the inequality flips. If -2x > 6, dividing by -2 gives x < -3. The direction change preserves the relationship while accounting for the negative multiplier.

Checking Your Work

Test inequality solutions by substituting values. For x < 5, try x = 3 (should work) and x = 7 (should fail). This verification builds confidence and catches common mistakes.

Programming Applications

In computer programming, comparison operators return true or false values. The expression x > y evaluates to true when x exceeds y, false otherwise. These boolean results control program flow through if-statements and loops.

Most programming languages support four comparison operators: > (greater), < (less), >= (greater or equal), and <= (less or equal). The expression age >= 18 might determine if a user can access certain content. The code if (score < passingScore) might trigger a failure message.

Developers use these comparisons extensively in data analysis, game development, financial calculations, and virtually every application that involves conditional logic. Understanding the symbols translates directly to reading and writing code.

History and Development of Inequality Symbols

The greater than and less than symbols emerged relatively recently in mathematical history. Before their introduction, mathematicians wrote comparisons in words or used cumbersome notation. The innovation came from Gottfried Wilhelm Leibniz, the German philosopher and mathematician who also co-invented calculus.

In 1684, Leibniz published these symbols in his work Nova Methodus (New Method), replacing lengthy descriptions with compact notation. His system expressed relationships like "a > b" for "a is greater than b" and "a < b" for the opposite. This efficiency proved valuable as mathematics grew more complex.

The symbols gained widespread adoption over the following centuries, becoming standard in mathematical notation worldwide. By the 19th century, they appeared consistently in textbooks, academic papers, and practical applications across all mathematical disciplines.

Standards: ASCII and Unicode

Modern computing relies on standardized encoding to ensure these symbols display correctly everywhere. The ASCII system (American Standard Code for Information Interchange) established in 1963 assigned numeric codes to common characters. The greater than sign received code 62 (hexadecimal 0x3E), while the less than sign received code 60 (hexadecimal 0x3C).

Unicode expanded character encoding to include virtually every writing system and symbol used globally. The basic symbols retain their ASCII positions in Unicode: U+003E for > and U+003C for <. Extended inequality symbols occupy separate code points: U+2265 for ≥ and U+2264 for ≤. This standardization means these symbols render identically on any device, from smartphones to supercomputers.

Cross-Platform Consistency

Because of Unicode, mathematical expressions look the same whether viewed on Windows, Mac, Linux, iOS, or Android. Documents transfer between systems without formatting corruption. Programmers can rely on these symbols behaving identically across all environments.

Applications in Everyday Life

Beyond academic contexts, greater than and less than comparisons appear constantly in daily decision-making. Shopping involves comparing prices ($12 > $8 means the first item costs more). Test scores compare performance (85% > 72% shows better results). Weather forecasts use thresholds (if temperature > 90°F, heat advisory applies).

Spreadsheets automate comparisons for business and personal finance. A formula like =IF(A1 > B1, "Over Budget", "Under Budget") instantly categorizes financial status. Data analysis relies heavily on these comparisons to segment information, filter results, and identify trends.

Understanding these symbols also helps with interpreting news, research, and statistics. A news story about "unemployment falling below 4%" uses implicit comparison. Scientific papers reporting that "Group A showed greater improvement than Group B" employ the same logical structure.

What Information Is Established and What Remains Unclear

The meanings and applications of greater than and less than symbols are universally established with complete certainty. No ambiguity exists about how these symbols function in mathematics, programming, or data analysis.

Established Information Application Context
Symbol meanings are globally standardized All mathematics and programming worldwide
> always indicates left value exceeds right All contexts including algebra, calculus, statistics
< always indicates left value falls below right All contexts including computer science, engineering
Unicode and ASCII ensure consistent display All digital platforms and documents
Leibniz introduced the symbols in 1684 Historical record of mathematical development

Some educational nuances remain subjects of pedagogical discussion. While the alligator mnemonic effectively teaches symbol direction to young children, educators debate whether it should be supplemented with verbal reading and number-line visualization. The balance between intuitive hooks and formal understanding varies across curricula and teaching styles.

Sources and Further Reading

Multiple resources provide deeper exploration of inequality symbols and their applications. Khan Academy offers video lessons on comparing negative numbers that reinforce these concepts through visual explanations. Wolfram MathWorld presents formal mathematical definitions for those wanting rigorous treatment. MathIsFun provides interactive tutorials for hands-on practice with solving inequalities.

The greater than sign indicates the left value exceeds the right value in a comparison relationship.

— Standard Mathematical Reference

Programming documentation from major languages (Python, JavaScript, C++) contains comprehensive sections on comparison operators, showing how >, <, >=, and <= function in code. These resources bridge mathematical concepts to practical implementation.

Practice and Next Steps

Mastering greater than and less than symbols requires practice across different contexts. Begin with simple whole number comparisons, then progress to negative numbers, decimals, and fractions. Apply the concepts in spreadsheet formulas or basic programming exercises to see them function in real systems.

For continued learning, explore worksheets on inequality solving, study the equals sign (=) and not-equal symbol (≠), and investigate how comparison operators work in your preferred programming language. Each step builds fluency with these fundamental mathematical tools.

Playing strategy games like How to Play Wordle – Rules, Colors and Tips Guide exercises the same logical comparison skills, where players deduce which letters belong in which positions through systematic elimination. Taking screenshots to track progress—like learning How to Take a Screenshot on Mac – All Shortcuts Explained—can help document your learning journey.

Frequently Asked Questions

What is the difference between > and

The greater than symbol (>) means the left value exceeds the right. The less than symbol (<) means the left value is smaller than the right. Both symbols point toward the smaller number.

How do you remember which way the symbols go?

The alligator trick works well: imagine an alligator's mouth always opening toward the larger number. Alternatively, rotate < 90 degrees clockwise to form an L for "less than."

What does ≥ mean?

The ≥ symbol means "greater than or equal to." The left value either exceeds the right or equals it. For example, x ≥ 5 allows x to be 5, 6, 7, or any larger number.

How do inequality symbols work in programming?

Programming comparison operators return true or false. The expression x > y evaluates to true when x exceeds y. These boolean results control conditional statements and loops.

Who invented the greater than and less than symbols?

Gottfried Wilhelm Leibniz introduced these symbols in 1684 through his publication Nova Methodus, replacing wordy mathematical descriptions with compact notation.

What are the ASCII codes for these symbols?

The greater than sign has ASCII code 62 (hex 0x3E). The less than sign has ASCII code 60 (hex 0x3C). In Unicode, they occupy U+003E and U+003C respectively.

Can you compare negative numbers with these symbols?

Yes, the same rules apply to negative numbers. On a number line, -2 > -5 because -2 sits to the right of -5, making it greater despite both being negative.

What is the opposite of greater than?

The opposite of greater than (>) is less than (<). For "a > b," the opposite statement is "b < a." The ≥ and ≤ symbols also have opposites: ≤ and ≥ respectively.


James Owen Reed Walker

About the author

James Owen Reed Walker

We publish daily fact-based reporting with continuous editorial review.