Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Old May 8th 09, 07:21 PM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Jul 2006
Posts: 158
Default Be careful when using Excel

"Antonio Vernucci" wrote in message
.. .
I think this message can be of interest for those using Excel for antenna
calculations.

Write in one cell: =(-A1^2 + 8) Note: the exponent of A1 is 2 (and not
2+8=10) because Excel performs squaring before summing

Write in another cell: =(8 - A1^2)

They look pretty much the same

But give A1 any non-zero value and see what happen.

73

Tony I0JX
Rome, Italy


I see it give the correct answers!!!

eg when A1 =2 the first formula =12 and the second =4

-2 squared =4
So 4 plus 8 = 12

2 squared =4
So 8 - 4 = 4

8 - (2 squared) = 4


Jeff



  #2   Report Post  
Old May 8th 09, 07:43 PM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Jun 2006
Posts: 395
Default Be careful when using Excel



--
------------------------------------------------------
Antonio Vernucci, I0JX US call: K0JX
Beacons: 50.004 MHz & 70.088 MHz
Home page: http://www.qsl.net/i0jx
e-mail: k0jx {at} amsat {dot} org
------------------------------------------------------
"Jeff" ha scritto nel messaggio
. com...
"Antonio Vernucci" wrote in message
.. .
I think this message can be of interest for those using Excel for antenna
calculations.

Write in one cell: =(-A1^2 + 8) Note: the exponent of A1 is 2 (and not
2+8=10) because Excel performs squaring before summing

Write in another cell: =(8 - A1^2)

They look pretty much the same

But give A1 any non-zero value and see what happen.

73

Tony I0JX
Rome, Italy


I see it give the correct answers!!!

eg when A1 =2 the first formula =12 and the second =4

-2 squared =4
So 4 plus 8 = 12

2 squared =4
So 8 - 4 = 4

8 - (2 squared) = 4


Yes, but the way Excel works is deceiving.

As a matter of fact, with reference to the general mathematical principle A+B =
B+A, let us have:
A= -A1^2
B = 8

Then, one would expect that -A1^2 + 8 is the same as 8 - A1^2, which is not the
way Excel works.

73

Tony I0JX



  #3   Report Post  
Old May 9th 09, 12:22 AM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Apr 2008
Posts: 7
Default Be careful when using Excel

"Antonio Vernucci" wrote in
:

Subject: Be careful when using Excel
From: "Antonio Vernucci"
Newsgroups: rec.radio.amateur.antenna
Reply-To: "Antonio Vernucci"



--
------------------------------------------------------
Antonio Vernucci, I0JX US call: K0JX
Beacons: 50.004 MHz & 70.088 MHz
Home page: http://www.qsl.net/i0jx
e-mail: k0jx {at} amsat {dot} org
------------------------------------------------------
"Jeff" ha scritto nel messaggio
. com...
"Antonio Vernucci" wrote in message
.. .
I think this message can be of interest for those using Excel for
antenna calculations.

Write in one cell: =(-A1^2 + 8) Note: the exponent of A1 is 2
(and not 2+8=10) because Excel performs squaring before summing

Write in another cell: =(8 - A1^2)

They look pretty much the same

But give A1 any non-zero value and see what happen.

73

Tony I0JX
Rome, Italy


I see it give the correct answers!!!

eg when A1 =2 the first formula =12 and the second =4

-2 squared =4
So 4 plus 8 = 12

2 squared =4
So 8 - 4 = 4

8 - (2 squared) = 4


Yes, but the way Excel works is deceiving.

As a matter of fact, with reference to the general mathematical
principle A+B = B+A, let us have:
A= -A1^2
B = 8

Then, one would expect that -A1^2 + 8 is the same as 8 - A1^2, which
is not the way Excel works.


So just what were you expecting to get? Were you expecting -A1^2 to
really be -(A1^2)?

-Bruce
  #4   Report Post  
Old May 9th 09, 07:05 PM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Jun 2007
Posts: 1,336
Default Be careful when using Excel

On Sat, 09 May 2009 16:48:19 +0000, Jim Higgins
wrote:

The proper precedence of mathematical operations is "PEMDAS," meaning
Parenthesis, Exponentiation, Mult/Div, Add/Sub.


Yep. The MS precidence is:
http://support.microsoft.com/kb/25189/EN-US/

: Range
space Intersection
, Union
- Negation
% Percentage
^ Exponentiation
* or / Multiplication or Division
+ or - Addition or Subtraction
& Text Operator
= = = Comparison Operators

Note that the negation (negative sign) operator comes before any
arithmetic operators. The problem comes from Excel inventing some
kind of distinction between negation (negative number) and
substraction. For arithmetic, there is none. For C programmers,
there is a difference (in the way the data is stored). More on the
subject:
http://mathforum.org/library/drmath/view/69058.html

That minus in front of the A1 is a unary negation, which is a
multiplication by minus 1, so it should be performed AFTER the
exponentiation, i.e; -A1^2 = -(A1^2)

Excel performs it before the exponentiation, i.e.; -A1^2 = (-A1)^2

The Excel answer is incorrect.


Yep. However, MS is not about to create problems by fixing the
problem. It would be a bad thing to have existing spreadsheets,
suddently give different results when run on updated and fixed
versions of Excel. Compatibility with old bugs is one reason that
bugs tend to be perpetuated. Old bugs and sleeping dogs should be
left alone.

73 de Jim, KB3PU


--
Jeff Liebermann
150 Felker St #D
http://www.LearnByDestroying.com
Santa Cruz CA 95060 http://802.11junk.com
Skype: JeffLiebermann AE6KS 831-336-2558
  #5   Report Post  
Old May 9th 09, 09:15 PM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Jul 2006
Posts: 702
Default Be careful when using Excel


"Jeff Liebermann" wrote in message
...
On Sat, 09 May 2009 16:48:19 +0000, Jim Higgins
wrote:

Yep. However, MS is not about to create problems by fixing the
problem. It would be a bad thing to have existing spreadsheets,
suddently give different results when run on updated and fixed
versions of Excel. Compatibility with old bugs is one reason that
bugs tend to be perpetuated. Old bugs and sleeping dogs should be
left alone.

73 de Jim, KB3PU



I sure am glad they finally fixed the simple calculator that Windows came
with. It had a major bug in it that if I remember correctly if you
substracted 3.1 from 3.11 you got zero. There were other numbers like that
also.

I think Intel had to recall a bunch of chips because of an error in the math
coprocessor part at one time.

Microsoft products are so full of 'problems' that if they ever put out an
error free product it would seem to be a mistake.






  #6   Report Post  
Old May 10th 09, 04:32 AM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Jun 2007
Posts: 1,336
Default Be careful when using Excel

On Sat, 9 May 2009 14:15:19 -0500, "Ralph Mowery"
wrote:

I think Intel had to recall a bunch of chips because of an error in the math
coprocessor part at one time.


Close. See:
http://en.wikipedia.org/wiki/Pentium_FDIV_bug
for the details. Never mind that the fixed chips arrived after the
release of the next generation of Pentium processors, making
replacements for the older and slower chips a waste of effort. I had
several servers running the buggy Pentium 60 and 66Mhz chips.
Incidentally, they ran unusually hot and required extra cooling. I
applied to Intel for 3 replacement chips. By the time they arrived,
the server motherboards had been replaced with something better and
faster, so the new chips just sat around.

Microsoft products are so full of 'problems' that if they ever put out an
error free product it would seem to be a mistake.


I beg to differ. Microsoft bashing seems to be the national sport in
computers. Yet, they're the most successful computah company in
history. In addition, they did it without any ties to proprietary
hardware. They must be doing something right.

In my never humble opinion, 99% or more of what MS releases is done
correctly and works well. The 1% that doesn't is what we're all
complaining about. Because MS has such a huge number of products and
technologies, it's fairly easy to find bugs and problems. However, if
you compare the MS bug lists with those from other companies, the
ratio of bugs to product complexity is very favorable for MS products.
I have had to deal with OS's and apps from smaller companies. Methinks
they're far worse than MS. Also, there may be plenty to complain
about, but most products are sufficiently functional to be usable for
the intended purpose. What bothers me about MS is not the quantity of
bugs, it's their tendency to add features and functions instead of
fixing bugs. This tends to make the product grow into a bloated
monstrosity of useless features, with far too many semi-permanent
bugs.



--
# Jeff Liebermann 150 Felker St #D Santa Cruz CA 95060
# 831-336-2558
#
http://802.11junk.com
#
http://www.LearnByDestroying.com AE6KS
  #7   Report Post  
Old May 10th 09, 04:44 AM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Jun 2007
Posts: 1,336
Default Be careful when using Excel

On Sat, 09 May 2009 19:32:57 -0700, Jeff Liebermann
wrote:

http://en.wikipedia.org/wiki/Pentium_FDIV_bug


Also, the Foof bug:
http://en.wikipedia.org/wiki/F00f


--
# Jeff Liebermann 150 Felker St #D Santa Cruz CA 95060
# 831-336-2558
#
http://802.11junk.com
#
http://www.LearnByDestroying.com AE6KS
  #8   Report Post  
Old May 10th 09, 05:51 AM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Jul 2006
Posts: 702
Default Be careful when using Excel


"Jeff Liebermann" wrote in message
...

I beg to differ. Microsoft bashing seems to be the national sport in
computers. Yet, they're the most successful computah company in
history. In addition, they did it without any ties to proprietary
hardware. They must be doing something right.


Microsoft got so big the same way Walmart did. They put out a cheeper
product.

Digital Research had a much beter product when IBM produced the PC. I think
they wanted about $ 150 for it and MS wanted $ 50 for their product. They
basically put DRI out of business and also some other companies that had
their ideas incorporated in to the MS product line.


  #9   Report Post  
Old May 11th 09, 11:08 PM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Jul 2006
Posts: 2,951
Default Be careful when using Excel

On Sat, 09 May 2009 19:32:57 -0700, Jeff Liebermann
wrote:

I beg to differ. Microsoft bashing seems to be the national sport in
computers.


It wasn't a sport that was invented for Microsoft, however. They came
by it honestly.

Yet, they're the most successful computah company in
history.


Arthur Anderson had the same reputation for bookkeeping; GM for
building cars; GOP for ... well that's Noah's flood under the bridge.

In addition, they did it without any ties to proprietary
hardware.


Never heard of the IBM PC?

They must be doing something right.


This would only provoke the enumeration of companies listed above.

In my never humble opinion, 99% or more of what MS releases is done
correctly and works well. The 1% that doesn't is what we're all
complaining about.


99% is actually pretty abysmal. Ma Bell could rightfully claim 5 9s
(99.999%) for service generations ago. Software bugs that 1% of your
user base encounters are evidence of incredible sloppiness.

Having to guess (before you break the seal) which 1% is broken is like
playing Russian roulette ever day for a year - and hoping to live to
Christmas.

73's
Richard Clark, KB7QHC
  #10   Report Post  
Old May 10th 09, 07:23 PM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Jun 2007
Posts: 1,336
Default Be careful when using Excel

On Sun, 10 May 2009 16:19:22 +0000, Jim Higgins
wrote:

I disagree. Negation is not a subtraction operation; it's a
multiplication operation.


It varies by position. At the front of a string of arithmetic
operations, it's multiplication. In between the terms of an equation
or values, it's subtraction. This article covers some of the problem:
http://www.physicsforums.com/showthread.php?t=109516
Humans can usually make the distinction by context. Too bad computers
can't do the same.

Either way Microsoft Excel implements it incorrectly because in either
case exponentiation has a higher precedence in the science of
mathematics.


Agreed.

Agreed that it's too late to go back now, but bugs perpetuate because
they aren't fixed promptly when encountered. This issue isn't new and
it was fixable when first encountered in the very first release of
Excel.


I can sorta tolerate perpetuating mistakes. However, Microsoft's
attitude toward precedence operations reeks of damage control and of
trying to create a secondary standard by sheer number of users. The
first step to fixing the problem should have been to admit that they
were wrong. That never seems to have happened.

--
Jeff Liebermann
150 Felker St #D
http://www.LearnByDestroying.com
Santa Cruz CA 95060 http://802.11junk.com
Skype: JeffLiebermann AE6KS 831-336-2558


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
everyone better be careful while building those shortwave radios [email protected] Shortwave 9 April 14th 08 09:50 PM
Be careful replying to off topic messages here! (La Site Communique) Dave Boatanchors 0 February 10th 04 11:15 PM
Be Careful What you Say on The Air Girls Dwight Stewart General 2 December 18th 03 03:22 AM
Be Careful What you Say on The Air Girls Dwight Stewart Scanner 2 December 18th 03 03:22 AM
Be Careful What you Say on The Air Girls Dwight Stewart Shortwave 2 December 18th 03 03:22 AM


All times are GMT +1. The time now is 07:02 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 RadioBanter.
The comments are property of their posters.
 

About Us

"It's about Radio"

 

Copyright © 2017