Skip to content

Math

Created on Tue Oct 15 09:15:10 2024

@author: benjaminlear

Available Symbols

Description Symbol Variable Name Python Code
≅ approximately equal to approximately_equal from codechembook.symbols.math import approximately_equal
⋅ dot product operator cdot from codechembook.symbols.math import cdot
÷ division ÷ divide from codechembook.symbols.math import divide
″ double prime double_prime from codechembook.symbols.math import double_prime
≥ greater than or equal to greater_equal from codechembook.symbols.math import greater_equal
> greater than > greater_than from codechembook.symbols.math import greater_than
≡ identical to identical_to from codechembook.symbols.math import identical_to
∞ infinity infinity from codechembook.symbols.math import infinity
≤ less than or equal to less_equal from codechembook.symbols.math import less_equal
< less than < less_than from codechembook.symbols.math import less_than
· middle dot · mdot from codechembook.symbols.math import mdot
⟂ perpendicular to perpendicular_to from codechembook.symbols.math import perpendicular_to
± plus/minus ± plusminus from codechembook.symbols.math import plusminus
′ prime prime from codechembook.symbols.math import prime
∝ proportional to proportional_to from codechembook.symbols.math import proportional_to
⁗ quadruple prime quadruple_prime from codechembook.symbols.math import quadruple_prime
× multiplication (times) × times from codechembook.symbols.math import times
‴ triple prime triple_prime from codechembook.symbols.math import triple_prime