zsh-workers
 help / color / mirror / code / Atom feed
From: Ray Andrews <rayandrews@eastlink.ca>
To: zsh-workers@zsh.org
Subject: Re: Math expression evaluation error?
Date: Sat, 10 Jan 2015 10:48:13 -0800	[thread overview]
Message-ID: <54B173ED.20301@eastlink.ca> (raw)
In-Reply-To: <150110085320.ZM28012@torch.brasslantern.com>

On 01/10/2015 08:53 AM, Bart Schaefer wrote:
> OK, let's leave zsh out of this and try the standard "expr" utility,
> which built-in arithmetic was designed to replace:
>
> % expr 3 / 8
> 0
> % expr 3.0 / 8.0
> expr: non-numeric argument
>
>
Bart, I shouldn't argue because it's to the point of irritation, and 
that is never positive, but:  My stance is not to think about 'expr' or 
other programming languages, or what ksh did in '79 or about glorious 
traditions going back to the mainframe days, or any of that.  My stance 
is just to ask: What is most useful?  What would produce the maximum 
utility along with the least surprise, especially for a new user? In 
which direction is 'the future'?

I now know to just set the option, and I'm all good, problem averted. So 
it really is just about philosophy.  IMHO we have moved past the abacus 
and a new user, once s/he learns  that zsh does internal 
arithmetic--that it has an excellent internal calculator--will expect 
that: 3/8 + 5/8 = 1.  I think that 99% of humanity would expect that.  
I'm a math tutor, and I am positive that every one of  my students would 
expect it.  I'm not saying that integer arithmetic should not be 
available, but should it be the default?  How often does anyone want or 
expect:  1/2 + 1/2 = 0? Maybe someone really needs that, and far be it 
from me to deprive them of it, but I'm claiming that it doesn't happen 
very often.

    {
       echo $(( 1/2 + 1/2 ));
       echo $(( .5 + .5 ));
    }
    0
    1

... is, in my mind, a monstrosity.  The very act of typing: " 1/2 " is a 
request for floating point arithmetic in just about exactly the same way 
that typing a decimal point is.  I'm not sure that " 1/2 " means 
anything at all within the confines of integer/abacus arithmetic, I 
think it's an imaginary number and should return an error, not zero.  
IMHO the zsh manual for arithmetic would read something like this:

"
Zsh has a powerful built in calculator. Type expressions just as you 
would in any other calculator and get the results you expect with no 
strange surprises or gotchas. For example:

     $ echo $(( ((.5 + 1/2) * 2) **2
     4

Zsh also does integer arithmetic.  Users of the abacus will appreciate 
this ;-) To enter integer mode:

    $ setopt integer_arithmetic

In this mode, the above expression returns '1'. Have fun with that, 
however we   recommend you not use this mode for teaching arithmetic to 
children.
"

Just my personal opinion.



  reply	other threads:[~2015-01-10 18:48 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-09 19:46 jdh
2015-01-09 20:15 ` Peter Stephenson
2015-01-09 21:40   ` jdh
2015-01-09 22:19     ` Ray Andrews
2015-01-09 23:06       ` Lawrence Velázquez
2015-01-09 23:52         ` Ray Andrews
2015-01-10  0:25           ` Bart Schaefer
2015-01-10  7:27             ` Ray Andrews
2015-01-10 16:53               ` Bart Schaefer
2015-01-10 18:48                 ` Ray Andrews [this message]
2015-01-10 19:14                   ` Bart Schaefer
2015-01-10 22:21                     ` Ray Andrews
2015-01-11  1:51                       ` Bart Schaefer
2015-01-11  5:10                         ` Ray Andrews
2015-01-12  9:17                           ` Vincent Lefevre
2015-01-12 16:18                             ` ZyX
2015-01-13 16:00                               ` Vincent Lefevre
2015-01-13 23:03                                 ` ZyX
2015-01-14 14:47                                   ` Vincent Lefevre
2015-01-14 21:37                                     ` ZyX
2015-01-15 13:34                                       ` Vincent Lefevre
2015-01-15 13:41                                         ` Vincent Lefevre
2015-01-15 18:32                                         ` ZyX
2015-01-15 21:57                                           ` Bart Schaefer
2015-01-09 22:40     ` Peter Stephenson
2015-01-12 10:55       ` Peter Stephenson
2015-01-14 15:02       ` Vincent Lefevre
2015-01-14 15:38         ` Peter Stephenson
2015-01-15 14:58           ` Peter Stephenson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=54B173ED.20301@eastlink.ca \
    --to=rayandrews@eastlink.ca \
    --cc=zsh-workers@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).