TE
TechEcho
Home
24h Top
Newest
Best
Ask
Show
Jobs
English
GitHub
Twitter
Home
Why does a/(b/c) = a(c/b)?
3 points
by
abhididdigi
over 10 years ago
1 comment
jonsen
over 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/(b/c) = a*(/b*c) = a*(c/b) a*(/b*c) is not legal syntax in most languages, but why not?</code></pre>