Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
Anybody like ShowCalc?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  17 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
John Doe  
View profile  
 More options Jan 16 2005, 3:38 pm
Newsgroups: alt.comp.freeware
From: John Doe <j...@usenet.is.the.real.thing>
Date: Sun, 16 Jan 2005 20:38:12 GMT
Local: Sun, Jan 16 2005 3:38 pm
Subject: Anybody like ShowCalc?
Explain this.

  2.87
- 1.88
= 0.99
- 0.99
= -1.0842021724855E-19

I don't do much with a calculator. I'm mostly curious.

I can't complain but I do anyway.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
badgolferman  
View profile  
 More options Jan 16 2005, 9:33 pm
Newsgroups: alt.comp.freeware
From: "badgolferman" <REMOVETHISbadgolfer...@gmail.com>
Date: Sun, 16 Jan 2005 21:33:14 -0500
Local: Sun, Jan 16 2005 9:33 pm
Subject: Re: Anybody like ShowCalc?

John Doe wrote:
> Explain this.

>   2.87
> - 1.88
> = 0.99
> - 0.99
> = -1.0842021724855E-19

> I don't do much with a calculator. I'm mostly curious.

> I can't complain but I do anyway.

I use ShowCalc, but after replicating what what you have I'm not sure I will
anymore....

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Susan Bugher  
View profile  
 More options Jan 16 2005, 10:24 pm
Newsgroups: alt.comp.freeware
From: Susan Bugher <whoisebug...@kvi.net>
Date: Sun, 16 Jan 2005 22:24:44 -0500
Local: Sun, Jan 16 2005 10:24 pm
Subject: Re: Anybody like ShowCalc?

That's a *small* round-off error. Have you tried doing the same thing in
another calculator app? I *think* you might see the same result. . .
IOW - I don't think ShowCalc is responsible for the error. . .

The answer is given in scientific notation. The  "E-19" at the end
indicates you should move the decimal point 19 spaces to the left to see
the answer in standard notation.

IOW - ShowCalc is telling you that the answer is:

  -0.00000000000000000010842021724855

if I counted the zeros correctly. . .    ;)

Susam
--
Pricelessware & ACF: http://www.pricelesswarehome.org
ACF FAQ: http://clients.net2000.com.au/~johnf/faq.html
ACF wiki: http://www.markcarter.me.uk/cgi-bin/wiki.pl?AcfWiki


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Cousin Stanley  
View profile  
 More options Jan 17 2005, 12:01 am
Newsgroups: alt.comp.freeware
From: Cousin Stanley <CousinStan...@HotMail.Com>
Date: Sun, 16 Jan 2005 22:01:34 -0700
Local: Mon, Jan 17 2005 12:01 am
Subject: Re: Anybody like ShowCalc?
| Explain this.
|
|   2.87
| - 1.88
| = 0.99
| - 0.99
| = -1.0842021724855E-19

I don't do much with a calculator. I'm mostly curious.

   Cousin John Doe ....

'''
     The seemingly odd behavior you've observed
     with your example numbers is probably not a problem
     with the particular calculator program you're using
     but one that is common to all computations
     that use  *floating poing*  arithmetic ....

     Many fractional values cannot be represented accurately
     in binary machines by floating point methods ....

     Some floating numbers are first scaled
     and then converted to integer representation
     before computations are carried out ....

     For example, money calculations ....

     Following are the internal representations
     used for the example in Python ....

     Floating Point ........... Internal Representation

         a ....... :  2.87 .... 2.8700000000000001
         b ....... :  1.88 .... 1.8799999999999999
         c ....... :  0.99 .... 0.98999999999999999
         d = a - b :  0.99 .... 0.99000000000000021
         e = d - c :  0.00 .... 2.2204460492503131e-16

     Scaled Integers ....

         287
         188
         99
         0
         -1

     Python code that prodced the output above
     follows ....
'''

# floating point numbers

a = 2.87
b = 1.88
c = 0.99

d = a - b
e = d - c

dict_floats = { 'a .......' :  a ,
                 'b .......' :  b ,
                 'c .......' :  c ,
                 'd = a - b' :  d ,
                 'e = d - c' :  e }

list_floats = dict_floats.keys()

list_floats.sort()

print
print '    Floating Point ........... Internal Representation .... '
print

for this in list_floats :

     data = this , dict_floats[ this ] , repr( dict_floats[ this ] )

     print '        %s :  %.2f .... %s' % ( data )

print

# Multiply floats by 100 and convert to integer

ia = int( a * 100 )
ib = int( b * 100 )
ic = int( c * 100 )

# Divide results by 100

id = ( ia - ib ) / 100
ie = ( id - ic ) / 100

data_int = [ ia , ib , ic , id , ie ]

print
print '    Scaled Integers .... '
print

for this_item in data_int :

     print '        %s' % this_item

print

--
Cousin Stanley
Human Being
Phoenix, Arizona


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Cousin Stanley  
View profile  
 More options Jan 17 2005, 12:06 am
Newsgroups: alt.comp.freeware
From: Cousin Stanley <CousinStan...@HotMail.Com>
Date: Sun, 16 Jan 2005 22:06:44 -0700
Local: Mon, Jan 17 2005 12:06 am
Subject: Re: Anybody like ShowCalc?

   [ *floating poing* ]  ---->  ( *floating point* )

   I'll wake up in a week or two ....

--
Cousin Stanley
Human Being
Phoenix, Arizona


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
wald  
View profile  
 More options Jan 17 2005, 9:35 am
Newsgroups: alt.comp.freeware
From: wald <arnout.standaert@n*o_s-p%a|m.cit.kuleuven.ac.be>
Date: Mon, 17 Jan 2005 14:35:48 +0000 (UTC)
Local: Mon, Jan 17 2005 9:35 am
Subject: Re: Anybody like ShowCalc?

Cousin Stanley <CousinStan...@HotMail.Com> wrote:

>    [ *floating poing* ]  ---->  ( *floating point* )

>    I'll wake up in a week or two ....

A floating poing would be more interesting, though.

For more on floating point arithmetic and the possible errors that
it brings:

http://en.wikipedia.org/wiki/Computer_numbering_formats
http://www.lahey.com/float.htm

Wald


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Accurate tape calculator? (was Re: Anybody like ShowCalc?)" by Iain Cheyne
Iain Cheyne  
View profile  
 More options Jan 17 2005, 10:52 am
Newsgroups: alt.comp.freeware
From: Iain Cheyne <myfirstn...@mysecondname.net>
Date: 17 Jan 2005 15:52:28 GMT
Local: Mon, Jan 17 2005 10:52 am
Subject: Accurate tape calculator? (was Re: Anybody like ShowCalc?)
"badgolferman" <REMOVETHISbadgolfer...@gmail.com> wrote in
news:350mfaF4etbv9U1@individual.net:

>>   2.87
>> - 1.88
>> = 0.99
>> - 0.99
>> = -1.0842021724855E-19

I really like ShowCalc and have never had any problems with it, but would
like to avoid problems like this. Can anyone recommend anything similar but
better?

I also tried the PC Mag tape calculator, but it is not as good and it's not
freeware anyway.

--
Iain
Please check www.pricelesswarehome.org, the FAQ and Google Groups before
posting in alt.comp.freeware.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bill Day  
View profile  
 More options Jan 17 2005, 11:23 am
Newsgroups: alt.comp.freeware
From: Bill Day <somethingext...@comcast.net>
Date: Mon, 17 Jan 2005 11:23:55 -0500
Local: Mon, Jan 17 2005 11:23 am
Subject: Re: Accurate tape calculator? (was Re: Anybody like ShowCalc?)
On 17 Jan 2005 15:52:28 GMT, Iain Cheyne

 I've used SmartSum for several years,,

http://www.smartcode.com/smartsum/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Remove Underscores  
View profile  
 More options Jan 17 2005, 2:22 pm
Newsgroups: alt.comp.freeware
From: "Remove Underscores" <j_e_...@foobox.com>
Date: Mon, 17 Jan 2005 19:22:54 GMT
Local: Mon, Jan 17 2005 2:22 pm
Subject: Re: Accurate tape calculator? (was Re: Anybody like ShowCalc?)

"Bill Day" <somethingext...@comcast.net> wrote in message

news:0kpnu09g5bg363h8d1r9j3rr3kn8tec38d@4ax.com...

> On 17 Jan 2005 15:52:28 GMT, Iain Cheyne
> <myfirstn...@mysecondname.net> wrote:

>>"badgolferman" <REMOVETHISbadgolfer...@gmail.com> wrote in
>>news:350mfaF4etbv9U1@individual.net:
>>I also tried the PC Mag tape calculator, but it is not as good and it's
>>not
>>freeware anyway.
> I've used SmartSum for several years,,

> http://www.smartcode.com/smartsum/

looking at the screen shot, that appears to be adware, not freeware.

while technically not a "tape" calculator, addup does a good job:
http://orefa.com/addup/1/index.html


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
GoodTime Barnie  
View profile  
 More options Jan 17 2005, 2:22 pm
Newsgroups: alt.comp.freeware
From: GoodTime Barnie <gtbar...@Telrude.net>
Date: Mon, 17 Jan 2005 13:22:36 -0600
Local: Mon, Jan 17 2005 2:22 pm
Subject: Re: Accurate tape calculator? (was Re: Anybody like ShowCalc?)
On 17 Jan 2005 15:52:28 GMT, Iain Cheyne wrote:

> "badgolferman" <REMOVETHISbadgolfer...@gmail.com> wrote in
> news:350mfaF4etbv9U1@individual.net:

>>>   2.87
>>> - 1.88
>>> = 0.99
>>> - 0.99
>>> = -1.0842021724855E-19

> I really like ShowCalc and have never had any problems with it, but would
> like to avoid problems like this. Can anyone recommend anything similar but
> better?

> I also tried the PC Mag tape calculator, but it is not as good and it's not
> freeware anyway.

 Take a look at CalcAnt, have used it for a long time with no problems.
          http://www.calcant.net/   site also in German but don't have link
            GoodTime Barnie

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Iain Cheyne  
View profile  
 More options Jan 17 2005, 6:05 pm
Newsgroups: alt.comp.freeware
From: "Iain Cheyne" <iain.che...@gmail.com>
Date: 17 Jan 2005 15:05:12 -0800
Local: Mon, Jan 17 2005 6:05 pm
Subject: Re: Accurate tape calculator? (was Re: Anybody like ShowCalc?)
I found another - http://gtapecalc.sourceforge.net/.

I'll try this out and the suggestions and let you know. I'm not sure
what is a good all-round accuracy test though, so any suggestions would
be appreciated. In the meantime, I'll use the calculation above.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Anybody like ShowCalc?" by Global Warming
Global Warming  
View profile  
 More options Jan 18 2005, 5:16 am
Newsgroups: alt.comp.freeware
From: Global Warming <riverwa...@myrealbox.com>
Date: 18 Jan 2005 10:16:42 GMT
Local: Tues, Jan 18 2005 5:16 am
Subject: Re: Anybody like ShowCalc?
Susan Bugher <whoisebug...@kvi.net> wrote in
news:10umbsn35j28o29@corp.supernews.com:

This one does not repeat this "error"
http://www.moffsoft.com/freecalc.htm

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Tape calculator roundup (was Re: Accurate tape calculator?)" by Iain Cheyne
Iain Cheyne  
View profile  
 More options Jan 18 2005, 9:17 am
Newsgroups: alt.comp.freeware
From: Iain Cheyne <myfirstn...@mysecondname.net>
Date: 18 Jan 2005 14:17:36 GMT
Local: Tues, Jan 18 2005 9:17 am
Subject: Tape calculator roundup (was Re: Accurate tape calculator?)
Due to some strange rounding errors in ShowCalc, I decided to evaluate a
few other simple tape calculators.

* Moffsoft FreeCalc (http://www.moffsoft.com/freecalc.htm)
* calcAnt (http://www.calcant.net/calcant.html)
* AddUp (http://orefa.com/)
* ESBCalc (http://www.esbconsult.com/esbcalc/esbcalc.html)

I almost evaluated gtapecalc (http://gtapecalc.sourceforge.net/), but it
requires GTK and complition.

XCALC (http://www.tordivel.no/xcalc/) is another tape calculator, but it
uses RPN (http://en.wikipedia.org/wiki/Reverse_Polish_notation), which is
useless for most people.

*Moffsoft FreeCalc*
Nice simple interface.
Passed the arithmetic test that ShowCalc failed.
Just simple arithmetic operators.
There is a advanced payware version.

*calcAnt*
Passed the arithmetic test that ShowCalc failed.
Just simple arithmetic operators.
Initially installs with German text. You have to find the Options page to
change to English.
Interesting text editor mode, that you can use to save text files.

*AddUp*
Passed the arithmetic test that ShowCalc failed.
Just simple arithmetic operators.
Slightly strange and ugly interface.
Allows you to remove buttons text, if, like me, you use the number pad on
your keyboard for input.

*ESBCalc*
Slightly ugly, but simple interface.
Passed the arithmetic test that ShowCalc failed.
Includes scientific operators.
There is a advanced payware version.
There is a no-install option.

My favourite was ESBCalc. Its accuracy, no-install option, OK interface
and many features mean it will replace ShowCalc.

If anyone else knows of good tape calculators or proper calculator
accuracy tests, please let me know.

--
Iain
Please check www.pricelesswarehome.org, the FAQ and Google Groups before
posting in alt.comp.freeware.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Accurate tape calculator? (was Re: Anybody like ShowCalc?)" by Bill Day
Bill Day  
View profile  
 More options Jan 18 2005, 9:43 am
Newsgroups: alt.comp.freeware
From: Bill Day <somethingext...@comcast.net>
Date: Tue, 18 Jan 2005 09:43:15 -0500
Local: Tues, Jan 18 2005 9:43 am
Subject: Re: Accurate tape calculator? (was Re: Anybody like ShowCalc?)
On Mon, 17 Jan 2005 19:22:54 GMT, "Remove Underscores"

 it's never offered ME an ad...and it still says 'free' in red
letters...I have no idea why that screenshot looks like that...and I
see no place on the web page that offers a way to pay ot remove any
ads.....which, as I say, I have never seen... *shrug*

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Tape calculator roundup (was Re: Accurate tape calculator?)" by badgolferman
badgolferman  
View profile  
 More options Jan 18 2005, 10:10 am
Newsgroups: alt.comp.freeware
From: "badgolferman" <REMOVETHISbadgolfer...@gmail.com>
Date: Tue, 18 Jan 2005 10:10:55 -0500
Local: Tues, Jan 18 2005 10:10 am
Subject: Re: Tape calculator roundup (was Re: Accurate tape calculator?)

I settled on MoffSoft FreeCalc.  The ESBCalc had too many advanced
function buttons for doing checkbook reconciliation.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Iain Cheyne  
View profile  
 More options Jan 18 2005, 12:15 pm
Newsgroups: alt.comp.freeware
From: Iain Cheyne <myfirstn...@mysecondname.net>
Date: 18 Jan 2005 17:15:42 GMT
Local: Tues, Jan 18 2005 12:15 pm
Subject: Re: Tape calculator roundup (was Re: Accurate tape calculator?)
Iain Cheyne <myfirstn...@mysecondname.net> wrote in
news:Xns95E2916653DC2iaincheynenet@130.133.1.4:

> *ESBCalc*
> Slightly ugly, but simple interface.
> Passed the arithmetic test that ShowCalc failed.
> Includes scientific operators.
> There is a advanced payware version.
> There is a no-install option.

> My favourite was ESBCalc. Its accuracy, no-install option, OK
> interface and many features mean it will replace ShowCalc.

I just tried SmartSum (http://www.smartcode.com/smartsum/).
There is no adware and it's *very* nice.

Good looking but busy interface.
Passed the arithmetic test that ShowCalc failed.
Includes scientific operators.
It has the most impressive feature set of all: macros, special buttons,
conversions, subtotals, voice speaking after actions.
It can even automatically replace the Windows Calculator, calc.exe.

I still prefer ESBCalc, as it is simpler and does not require an install,
but it is a very close-run thing.

--
Iain
Please check www.pricelesswarehome.org, the FAQ and Google Groups before
posting in alt.comp.freeware.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Anybody like ShowCalc?" by Cousin Stanley
Cousin Stanley  
View profile  
 More options Jan 18 2005, 5:42 pm
Newsgroups: alt.comp.freeware
From: Cousin Stanley <CousinStan...@HotMail.Com>
Date: Tue, 18 Jan 2005 15:42:41 -0700
Local: Tues, Jan 18 2005 5:42 pm
Subject: Re: Anybody like ShowCalc?
| ....
| http://en.wikipedia.org/wiki/Computer_numbering_formats
|
| http://www.lahey.com/float.htm

Cousin wald ....

   Thanks for the links ....

   The Wikipedia article leaves the following
   as the bottom line to their discussion on
   floating point ....

     "The point here is that a computer isn't magic,
      it is a machine and is subject to certain rules
      and constraints. Although many people place
      a childlike faith in the answers computers give,
      even under the best of circumstances these machines
      have a certain unavoidable inexactness built into
      their treatment of real numbers."

--
Cousin Stanley
Human Being
Phoenix, Arizona


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »