Hacker News new | ask | show | jobs
Why does a/(b/c) = a(c/b)? (mail-archive.com)
3 points by abhididdigi 4234 days ago
1 comments

I often find the following analogy useful to have in mind

  a-(b-c) = a+(-b+c) = a+(c-b)

  a/(b/c) = a*(/b*c) = a*(c/b)

  a*(/b*c) is not legal syntax in most languages, but why not?