TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Intervals in modular arithmetic

43 点作者 mmozeiko超过 9 年前

2 条评论

agentultra超过 9 年前
Interval arithmetic is neat. This is a great article for introducing modular interval arithmetic too. I'm going to add this to my toy interval arithmetic library when I get a chance. Thanks!
Someone超过 9 年前
One quirk worth mentioning is equality testing. That is <i>not</i> simply a matter of checking that lower and upper boundaries are equal:<p><pre><code> [4,3] = [8,7] [4,4) = [8,8) = (4,4] </code></pre> (The latter independently of the issue whether you think those sets are empty or the complements of the empty set)