TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Why does a/(b/c) = a(c/b)?

3 pointsby abhididdigiover 10 years ago

1 comment

jonsenover 10 years ago
I often find the following analogy useful to have in mind<p><pre><code> a-(b-c) = a+(-b+c) = a+(c-b) a&#x2F;(b&#x2F;c) = a*(&#x2F;b*c) = a*(c&#x2F;b) a*(&#x2F;b*c) is not legal syntax in most languages, but why not?</code></pre>