Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Third Square Root (sqrt3)?
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
  23 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
 
Thomas Guettler  
View profile  
 More options Sep 12 2002, 4:10 am
Newsgroups: comp.lang.lisp
From: Thomas Guettler <zopestol...@thomas-guettler.de>
Date: Thu, 12 Sep 2002 10:09:51 +0200
Local: Thurs, Sep 12 2002 4:09 am
Subject: Third Square Root (sqrt3)?
Hi!

I need to compute the third square root:

Example:
  sqrt3(27) --> 3

I use Allegro 3.0.2 on win32

I searched in the documentation, but I didn't find
an answer.

  thomas


 
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.
Raymond Wiker  
View profile  
 More options Sep 12 2002, 4:25 am
Newsgroups: comp.lang.lisp
From: Raymond Wiker <Raymond.Wi...@fast.no>
Date: 12 Sep 2002 10:25:22 +0200
Local: Thurs, Sep 12 2002 4:25 am
Subject: Re: Third Square Root (sqrt3)?

Thomas Guettler <zopestol...@thomas-guettler.de> writes:
> Hi!

> I need to compute the third square root:

> Example:
>   sqrt3(27) --> 3

> I use Allegro 3.0.2 on win32

> I searched in the documentation, but I didn't find
> an answer.

        nthroot(x, n) == expt(x, 1/n)

=>      (expt 27 (/ 3))

--
Raymond Wiker                        Mail:  Raymond.Wi...@fast.no
Senior Software Engineer             Web:   http://www.fast.no/
Fast Search & Transfer ASA           Phone: +47 23 01 11 60
P.O. Box 1677 Vika                   Fax:   +47 35 54 87 99
NO-0120 Oslo, NORWAY                 Mob:   +47 48 01 11 60

Try FAST Search: http://alltheweb.com/


 
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.
Edi Weitz  
View profile  
 More options Sep 12 2002, 4:30 am
Newsgroups: comp.lang.lisp
From: Edi Weitz <e...@agharta.de>
Date: 12 Sep 2002 10:30:19 +0200
Local: Thurs, Sep 12 2002 4:30 am
Subject: Re: Third Square Root (sqrt3)?

Thomas Guettler <zopestol...@thomas-guettler.de> writes:
> Hi!

> I need to compute the third square root:

> Example:
>   sqrt3(27) --> 3

> I use Allegro 3.0.2 on win32

> I searched in the documentation, but I didn't find
> an answer.

You should search in your old math books first. What is "the third
square root" supposed to be? From your example I suppose you're
looking for the third root of x instead which is the same as x to the
power of 1/3th:

  [CMUCL 18d]

  * (expt 27 1/3)
  3.0

Some implementations might even yield exact results in some cases (see
the notes at the end of the CLHS page for EXPT):

  [CLISP 2.29]

  [1]> (expt 27 1/3)
  3
  [2]> (type-of (expt 27 1/3))
  FIXNUM

Edi.


 
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.
Thomas Guettler  
View profile  
 More options Sep 12 2002, 5:19 am
Newsgroups: comp.lang.lisp
From: Thomas Guettler <zopestol...@thomas-guettler.de>
Date: Thu, 12 Sep 2002 11:19:09 +0200
Local: Thurs, Sep 12 2002 5:19 am
Subject: Re: Third Square Root (sqrt3)?
Raymond Wiker schrieb:

Thank you very much!

   thomas


 
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.
Erik Naggum  
View profile  
 More options Sep 12 2002, 1:35 pm
Newsgroups: comp.lang.lisp
From: Erik Naggum <e...@naggum.no>
Date: 12 Sep 2002 17:35:18 +0000
Local: Thurs, Sep 12 2002 1:35 pm
Subject: Re: Third Square Root (sqrt3)?
* Thomas Guettler
| I need to compute the third square root:

  It is actually called the cube root.

--
Erik Naggum, Oslo, Norway

Act from reason, and failure makes you rethink and study harder.
Act from faith, and failure makes you blame someone and push harder.


 
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.
Bruce Hoult  
View profile  
 More options Sep 12 2002, 10:10 pm
Newsgroups: comp.lang.lisp
From: Bruce Hoult <br...@hoult.org>
Date: Fri, 13 Sep 2002 14:10:51 +1200
Local: Thurs, Sep 12 2002 10:10 pm
Subject: Re: Third Square Root (sqrt3)?
In article <3240840918170...@naggum.no>, Erik Naggum <e...@naggum.no>
wrote:

> * Thomas Guettler
> | I need to compute the third square root:

>   It is actually called the cube root.

Erik perhaps could have mentioned that "third root" is also perfectly
acceptable English.

-- Bruce


 
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.
Will Deakin  
View profile  
 More options Sep 13 2002, 3:54 am
Newsgroups: comp.lang.lisp
From: Will Deakin <anisotro...@hotmail.com>
Date: Fri, 13 Sep 2002 08:58:30 +0100
Local: Fri, Sep 13 2002 3:58 am
Subject: Re: Third Square Root (sqrt3)?
Bruce Hoult wrote:
> Erik perhaps could have mentioned that "third root" is also perfectly
> acceptable English.

Where? If it *is*, it is a form of technical english that I am
unfamiliar with.

:)w


 
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.
no  
View profile  
 More options Sep 13 2002, 6:17 am
Newsgroups: comp.lang.lisp
From: n...@spam.thanks
Date: Fri, 13 Sep 2002 10:17:30 +0000 (UTC)
Local: Fri, Sep 13 2002 6:17 am
Subject: Re: Third Square Root (sqrt3)?

Will Deakin  wrote:
>Where? If it *is*, it is a form of technical english that I am
>unfamiliar with.

It's quite common in England.
Third, fourth, fifth roots are not unheard of.
First and second roots are rare :-)

 
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.
Will Deakin  
View profile  
 More options Sep 13 2002, 6:26 am
Newsgroups: comp.lang.lisp
From: Will Deakin <anisotro...@hotmail.com>
Date: Fri, 13 Sep 2002 11:30:36 +0100
Local: Fri, Sep 13 2002 6:30 am
Subject: Re: Third Square Root (sqrt3)?
n...@spam.thanks wrote:
> It's quite common in England.

Really? are you sure? Where in England. I have lived, studied and
worked all my life in the UK I have never encountered this phrase.

:)w


 
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.
Tim Bradshaw  
View profile  
 More options Sep 13 2002, 6:45 am
Newsgroups: comp.lang.lisp
From: Tim Bradshaw <t...@cley.com>
Date: 13 Sep 2002 11:39:43 +0100
Local: Fri, Sep 13 2002 6:39 am
Subject: Re: Third Square Root (sqrt3)?

* Will Deakin wrote:
> Really? are you sure? Where in England. I have lived, studied and
> worked all my life in the UK I have never encountered this phrase.

Me too.  Fourth and up root is common, but I've never come across
third root.

--tim


 
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.
Peter Ward  
View profile  
 More options Sep 13 2002, 7:07 am
Newsgroups: comp.lang.lisp
From: Peter Ward <m...@configure.newsreader.properly>
Date: Fri, 13 Sep 2002 11:07:50 +0000 (UTC)
Local: Fri, Sep 13 2002 7:07 am
Subject: Re: Third Square Root (sqrt3)?

Will Deakin  wrote:

>n...@spam.thanks wrote:
>> It's quite common in England.
>Really? are you sure? Where in England. I have lived, studied and
>worked all my life in the UK I have never encountered this phrase.

Just based on my school and college experience. Admittedly 'cube' root is more common. I cannot cite a reference but "third power" and "third root" go together as well as "cube" and "cube root".

 
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.
Will Deakin  
View profile  
 More options Sep 13 2002, 7:29 am
Newsgroups: comp.lang.lisp
From: Will Deakin <anisotro...@hotmail.com>
Date: Fri, 13 Sep 2002 12:34:16 +0100
Local: Fri, Sep 13 2002 7:34 am
Subject: Re: Third Square Root (sqrt3)?
Peter Ward wrote:
> Just based on my school and college experience.

Hmmm. Where?

(I have experience of school and college in Bristol, Powys,
Birmingham, Stoke, Stafford, Sheffield, Leeds and Manchester and as I
currently live and work in Yorkshire and I still have yet to encounter
"third root" except in the context of enumerating the roots of
polynomial equations: e.g. to refering to the third root of the
quartic[1] (+ (* (+ (* (+ (* (+ x a) x) b) x) c) x) d) [2]...)

:)w

[1] ...or bi-quadratic...
[2] or in infix notation x^4 + ax^3 +bx^2 + cx + d ;)


 
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.
Bruce Hoult  
View profile  
 More options Sep 13 2002, 8:19 am
Newsgroups: comp.lang.lisp
From: Bruce Hoult <br...@hoult.org>
Date: Sat, 14 Sep 2002 00:19:18 +1200
Local: Fri, Sep 13 2002 8:19 am
Subject: Re: Third Square Root (sqrt3)?
In article <ey3y9a6npg0....@cley.com>, Tim Bradshaw <t...@cley.com>
wrote:

> * Will Deakin wrote:
> > Really? are you sure? Where in England. I have lived, studied and
> > worked all my life in the UK I have never encountered this phrase.

> Me too.  Fourth and up root is common, but I've never come across
> third root.

I was commenting more about grammar than about frequency of use.  I
certainly agree that "cube root" is far more commonly heard than "third
root", but I wouldn't expect anyone to have any trouble understanding
what is meant by "third root".  "third square root", on the other hand,
is quite dissonant to the ear.

It's pretty easy to find uses of "third root".  e.g.

http://mathforum.org/library/drmath/view/57892.html

-- Bruce


 
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.
Peter Ward  
View profile  
 More options Sep 13 2002, 9:28 am
Newsgroups: comp.lang.lisp
From: Peter Ward <h...@ha.ha>
Date: Fri, 13 Sep 2002 13:28:24 +0000 (UTC)
Local: Fri, Sep 13 2002 9:28 am
Subject: Re: Third Square Root (sqrt3)?

Will Deakin  wrote:

>Peter Ward wrote:
>> Just based on my school and college experience.
>Hmmm. Where?

>(I have experience of school and college in Bristol, Powys,
>Birmingham, Stoke, Stafford, Sheffield, Leeds and Manchester and as I
>currently live and work in Yorkshire and I still have yet to encounter
>"third root" except in the context of enumerating the roots of
>polynomial equations: e.g. to refering to the third root of the
>quartic[1] (+ (* (+ (* (+ (* (+ x a) x) b) x) c) x) d) [2]...)

I defer to your greater mobility. I went to school only in Ramsgate and college in Cambridge. I work in London, but not with Lisp. So I could claim it was commonly used in the Isle of Thanet, but I won't.

 
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.
sv0f  
View profile  
 More options Sep 13 2002, 10:20 am
Newsgroups: comp.lang.lisp
From: n...@vanderbilt.edu (sv0f)
Date: Fri, 13 Sep 2002 09:17:02 -0500
Local: Fri, Sep 13 2002 10:17 am
Subject: Re: Third Square Root (sqrt3)?

In article <ey3y9a6npg0....@cley.com>, Tim Bradshaw <t...@cley.com> wrote:
>* Will Deakin wrote:
>> Really? are you sure? Where in England. I have lived, studied and
>> worked all my life in the UK I have never encountered this phrase.

>Me too.  Fourth and up root is common, but I've never come across
>third root.

Ditto for me, born, raised, and currently living in the US.

I assume this convention exists to minimize the length of
(English) utterances: "square" and "cube" are monosyllabic,
whereas quartic, quintic, and the like are polysyllablic.


 
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.
Tim Bradshaw  
View profile  
 More options Sep 13 2002, 10:31 am
Newsgroups: comp.lang.lisp
From: Tim Bradshaw <t...@cley.com>
Date: 13 Sep 2002 15:31:15 +0100
Local: Fri, Sep 13 2002 10:31 am
Subject: Re: Third Square Root (sqrt3)?

* none  wrote:
> I assume this convention exists to minimize the length of
> (English) utterances: "square" and "cube" are monosyllabic,
> whereas quartic, quintic, and the like are polysyllablic.

No, I don't think so.  I think it's because of the relation between
nth-order expressions and n-dimensional spaces.  I think it stops
after `cube' because people tend not to have experience of (and
therefore words for) spaces of dimension greater than 3.

--tim


 
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.
Erik Naggum  
View profile  
 More options Sep 13 2002, 11:17 am
Newsgroups: comp.lang.lisp
From: Erik Naggum <e...@naggum.no>
Date: 13 Sep 2002 15:17:03 +0000
Local: Fri, Sep 13 2002 11:17 am
Subject: Re: Third Square Root (sqrt3)?
* Bruce Hoult
| Erik perhaps could have mentioned that "third root" is also perfectly
| acceptable English.

  No, I could not.  /You/ could have mentioned this, which is contrary to an
  amazing array of reference works, both online and offline.  Unless, of
  course, you refer to something else entierely, such as in "go, go, go!"
  where the last "go" would be the third root.

--
Erik Naggum, Oslo, Norway

Act from reason, and failure makes you rethink and study harder.
Act from faith, and failure makes you blame someone and push harder.


 
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.
Duane Rettig  
View profile  
 More options Sep 13 2002, 12:00 pm
Newsgroups: comp.lang.lisp
From: Duane Rettig <du...@franz.com>
Date: Fri, 13 Sep 2002 16:00:01 GMT
Local: Fri, Sep 13 2002 12:00 pm
Subject: Re: Third Square Root (sqrt3)?

Tim Bradshaw <t...@cley.com> writes:
> * none  wrote:

> > I assume this convention exists to minimize the length of
> > (English) utterances: "square" and "cube" are monosyllabic,
> > whereas quartic, quintic, and the like are polysyllablic.

> No, I don't think so.  I think it's because of the relation between
> nth-order expressions and n-dimensional spaces.  I think it stops
> after `cube' because people tend not to have experience of (and
> therefore words for) spaces of dimension greater than 3.

I don't know about that.  With that logic we would have developed the
term "hypercube root".

--
Duane Rettig    du...@franz.com    Franz Inc.  http://www.franz.com/
555 12th St., Suite 1450               http://www.555citycenter.com/
Oakland, Ca. 94607        Phone: (510) 452-2000; Fax: (510) 452-0182  


 
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.
Tim Bradshaw  
View profile  
 More options Sep 13 2002, 1:22 pm
Newsgroups: comp.lang.lisp
From: Tim Bradshaw <t...@cley.com>
Date: 13 Sep 2002 18:18:23 +0100
Local: Fri, Sep 13 2002 1:18 pm
Subject: Re: Third Square Root (sqrt3)?

* Duane Rettig wrote:
> I don't know about that.  With that logic we would have developed the
> term "hypercube root".

I don't think so, because hypercube (to me, anyway) means a `cube' in
a space of dimension > 3, so hypercube root is too vague...

--tim


 
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.
Barry Margolin  
View profile  
 More options Sep 13 2002, 1:40 pm
Newsgroups: comp.lang.lisp
From: Barry Margolin <bar...@genuity.net>
Date: Fri, 13 Sep 2002 17:40:17 GMT
Local: Fri, Sep 13 2002 1:40 pm
Subject: Re: Third Square Root (sqrt3)?
In article <3240919023488...@naggum.no>, Erik Naggum  <e...@naggum.no> wrote:

>* Bruce Hoult
>| Erik perhaps could have mentioned that "third root" is also perfectly
>| acceptable English.

>  No, I could not.  /You/ could have mentioned this, which is contrary to an
>  amazing array of reference works, both online and offline.

Although the term "cube root" is the common one, I think "third root" would
be well understood.  There's no special term for all the other roots,
they're all just known by their ordinal numbers: fourth root (this could be
called "tesseract root", but AFAIK it's not), fifth root, etc.  "Third
root" fits into this pattern, so I can't imagine any confusion over it.

"Third square root" on the other hand, is definitely confusing.  When I
first saw that subject, my first thought was "the first square root of 4 is
2, the second one is -2, I wonder what he's thinking the third one would
be?"

--
Barry Margolin, bar...@genuity.net
Genuity, Woburn, MA
*** DON'T SEND TECHNICAL QUESTIONS DIRECTLY TO ME, post them to newsgroups.
Please DON'T copy followups to me -- I'll assume it wasn't posted to the group.


 
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.
Barry Margolin  
View profile  
 More options Sep 13 2002, 1:41 pm
Newsgroups: comp.lang.lisp
From: Barry Margolin <bar...@genuity.net>
Date: Fri, 13 Sep 2002 17:41:14 GMT
Local: Fri, Sep 13 2002 1:41 pm
Subject: Re: Third Square Root (sqrt3)?
In article <ey3k7lp7qqo....@cley.com>, Tim Bradshaw  <t...@cley.com> wrote:

>* Duane Rettig wrote:

>> I don't know about that.  With that logic we would have developed the
>> term "hypercube root".

>I don't think so, because hypercube (to me, anyway) means a `cube' in
>a space of dimension > 3, so hypercube root is too vague...

Like I said in my last post, the term would be "tesseract root".

--
Barry Margolin, bar...@genuity.net
Genuity, Woburn, MA
*** DON'T SEND TECHNICAL QUESTIONS DIRECTLY TO ME, post them to newsgroups.
Please DON'T copy followups to me -- I'll assume it wasn't posted to the group.


 
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.
sv0f  
View profile  
 More options Sep 13 2002, 2:40 pm
Newsgroups: comp.lang.lisp
From: n...@vanderbilt.edu (sv0f)
Date: Fri, 13 Sep 2002 13:37:43 -0500
Local: Fri, Sep 13 2002 2:37 pm
Subject: Re: Third Square Root (sqrt3)?

In article <ey3bs72neq4....@cley.com>, Tim Bradshaw <t...@cley.com> wrote:
>* none  wrote:

>> I assume this convention exists to minimize the length of
>> (English) utterances: "square" and "cube" are monosyllabic,
>> whereas quartic, quintic, and the like are polysyllablic.

>No, I don't think so.  I think it's because of the relation between
>nth-order expressions and n-dimensional spaces.  I think it stops
>after `cube' because people tend not to have experience of (and
>therefore words for) spaces of dimension greater than 3.

Interesting hypothesis.

When I think of roots and multidimensional spaces, I think of the
Minkowski distance metric.  We say "distance" and "Euclidean
distance" for the special cases of N=1 and N=2, respectively, but
use the general form of the metric when N>=3.

I don't know is this is relevant or a non-sequitir...


 
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.
Tim Bradshaw  
View profile  
 More options Sep 13 2002, 4:44 pm
Newsgroups: comp.lang.lisp
From: Tim Bradshaw <t...@cley.com>
Date: 13 Sep 2002 21:34:14 +0100
Local: Fri, Sep 13 2002 4:34 pm
Subject: Re: Third Square Root (sqrt3)?

* none  wrote:
> When I think of roots and multidimensional spaces, I think of the
> Minkowski distance metric.  We say "distance" and "Euclidean
> distance" for the special cases of N=1 and N=2, respectively, but
> use the general form of the metric when N>=3.

I think for a physicist that (a) the minkowski metric would actually
something with signature (+,+,+,-) (or (-,-,-,+)), or in general with
n-1 +s and a - or vice-versa.  And obviously it isn't actually a
metric, but...  And (b) `Euclidian' can be used for any number of
dimensions (`Euclidian n-space').  Euclidean can *certainly* be used
in physics for n=3.

> I don't know is this is relevant or a non-sequitir...

No, me neither.  more interesting than some other current threads
though.

--tim


 
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 »