Skip to content

Instantly share code, notes, and snippets.

@neizod
Last active October 3, 2021 13:38
Show Gist options
  • Save neizod/6348772555a667330fe274448187401d to your computer and use it in GitHub Desktop.
Save neizod/6348772555a667330fe274448187401d to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"from math import inf\n",
"from sympy import Interval"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/latex": [
"$\\displaystyle \\left(-\\infty, 42\\right]$"
],
"text/plain": [
"Interval(-oo, 42)"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"i1 = Interval(-inf, 42)\n",
"i1"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/latex": [
"$\\displaystyle \\left(-23, \\infty\\right)$"
],
"text/plain": [
"Interval.open(-23, oo)"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"i2 = Interval.Lopen(-23, inf)\n",
"i2"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"text/latex": [
"$\\displaystyle \\left(-\\infty, \\infty\\right)$"
],
"text/plain": [
"Interval(-oo, oo)"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"i1 | i2 # union"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/latex": [
"$\\displaystyle \\left(-23, 42\\right]$"
],
"text/plain": [
"Interval.Lopen(-23, 42)"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"i1 & i2 # intersect"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"text/latex": [
"$\\displaystyle \\left(-\\infty, -23\\right]$"
],
"text/plain": [
"Interval(-oo, -23)"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"i1 - i2 # sub"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"text/latex": [
"$\\displaystyle \\left(42, \\infty\\right)$"
],
"text/plain": [
"Interval.open(42, oo)"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"i2 - i1 # sub"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"data": {
"text/latex": [
"$\\displaystyle \\left(-\\infty, -23\\right] \\cup \\left(42, \\infty\\right)$"
],
"text/plain": [
"Union(Interval(-oo, -23), Interval.open(42, oo))"
]
},
"execution_count": 8,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"i1 ^ i2 # xor"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.10"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment