Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

Asynchronous inputs are at the root of our race problems. -- D. Winker and F. Prosser


computers / comp.os.linux.advocacy / Re: Project Euclid Problem 26 SOLVED!!!

SubjectAuthor
* Project Euclid Problem 26 SOLVED!!!Farley Flud
+- Re: Project Euclid Problem 26 SOLVED!!!Farley Flud
+- Re: Project Euclid Problem 26 SOLVED!!!Farley Flud
`* Re: Project Euclid Problem 26 SOLVED!!!Physfitfreak
 +* Re: Project Euclid Problem 26 SOLVED!!!Diego Garcia
 |`* Re: Project Euclid Problem 26 SOLVED!!!Physfitfreak
 | +- Re: Project Euclid Problem 26 SOLVED!!!Physfitfreak
 | +- Re: Project Euclid Problem 26 SOLVED!!!Physfitfreak
 | +- Re: Project Euclid Problem 26 SOLVED!!!Stéphane CARPENTIER
 | +- Re: Project Euclid Problem 26 SOLVED!!!Farley Flud
 | `* Re: Project Euclid Problem 26 SOLVED!!!Farley Flud
 |  `* Re: Project Euclid Problem 26 SOLVED!!!Physfitfreak
 |   +- Re: Project Euclid Problem 26 SOLVED!!!Farley Flud
 |   `* Re: Project Euclid Problem 26 SOLVED!!!Farley Flud
 |    +* Re: Project Euclid Problem 26 SOLVED!!!Nuxxie
 |    |`- Re: Project Euclid Problem 26 SOLVED!!!DFS
 |    +* Re: Project Euclid Problem 26 SOLVED!!!Physfitfreak
 |    |`- Re: Project Euclid Problem 26 SOLVED!!!Farley Flud
 |    `* Re: Project Euclid Problem 26 SOLVED!!!Nuxxie
 |     `* Re: Project Euclid Problem 26 SOLVED!!!Physfitfreak
 |      `* Re: Project Euclid Problem 26 SOLVED!!!Farley Flud
 |       `- Re: Project Euclid Problem 26 SOLVED!!!Physfitfreak
 `* Re: Project Euclid Problem 26 SOLVED!!!DFS
  +* Re: Project Euclid Problem 26 SOLVED!!!Diego Garcia
  |+* Re: Project Euclid Problem 26 SOLVED!!!Stéphane CARPENTIER
  ||`* Re: Project Euclid Problem 26 SOLVED!!!Farley Flud
  || `* Re: Project Euclid Problem 26 SOLVED!!!DFS
  ||  `- Re: Project Euclid Problem 26 SOLVED!!!candycanearter07
  |+* Re: Project Euclid Problem 26 SOLVED!!!DFS
  ||`- Re: Project Euclid Problem 26 SOLVED!!!Stéphane CARPENTIER
  |`- Re: Project Euclid Problem 26 SOLVED!!!Physfitfreak
  `- Re: Project Euclid Problem 26 SOLVED!!!Stéphane CARPENTIER

Pages:12
Re: Project Euclid Problem 26 SOLVED!!!

<uso1nm$3s289$2@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11833&group=comp.os.linux.advocacy#11833

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: nospam@dfs.com (DFS)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Project Euclid Problem 26 SOLVED!!!
Date: Mon, 11 Mar 2024 18:48:24 -0400
Organization: A noiseless patient Spider
Lines: 97
Message-ID: <uso1nm$3s289$2@dont-email.me>
References: <17bb1baebce14546$13883$3298354$802601b3@news.usenetexpress.com>
<usidqe$15gr6$2@solani.org> <usifaf$2g6s6$1@dont-email.me>
<17bb31d70dea31a5$5$3602787$802601b3@news.usenetexpress.com>
<65ecccb7$0$3242$426a34cc@news.free.fr>
<17bb35765f61452e$1$856620$802601b3@news.usenetexpress.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Mon, 11 Mar 2024 22:48:23 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="4d56b3b9a7621a72403d9315d9b19811";
logging-data="4065545"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/uqMMMyHZLRMaeaQYRtGfW"
User-Agent: Betterbird (Windows)
Cancel-Lock: sha1:ZE7tpKBp9Kvh5c+WE6Sx754ZOx0=
In-Reply-To: <17bb35765f61452e$1$856620$802601b3@news.usenetexpress.com>
Content-Language: en-US
 by: DFS - Mon, 11 Mar 2024 22:48 UTC

On 3/9/2024 4:21 PM, Lazy Larry wrote:
> On 09 Mar 2024 20:55:19 GMT, Stéphane CARPENTIER wrote:
>
>>
>> Don't be too harsh on python. Last time you checked, you had 5, five,
>> yes FIVE, versions of python on your own computer. For someone who pretend to
>> master his computer and to hate python, it tells a lot.
>>
>
> That's Gentoo, honey.
>
> I got 3 but I could have 10, 20, or a billion.
>
> I can select:
>
> [~]# eselect python list
> Available Python interpreters, in order of preference:
> [1] python3.11
> [2] python3.12
> [3] python2.7
>
> Python 3.11 is first because that is the current Gentoo
> default. But I can switch between all versions at will
> via:
>
> eselect python [1 | 2 | 3]
>
> Can you do that with your crippled distro?

Of course

update-alternatives (basically manages symlinks)
https://www.baeldung.com/linux/update-alternatives-command

//current
wsl$ python
Python 3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0] on linux

//install new python
wsl$ sudo apt install python3.11
Setting up python3.11 (3.11.0~rc1-1~22.04) ...
Processing triggers for man-db (2.10.2-1) ...

//add 2 python entries to the update-alternatives app
sudo update-alternatives --install /usr/bin/python python
/usr/bin/python3.10 1
sudo update-alternatives --install /usr/bin/python python
/usr/bin/python3.11 2

//choose which python version you want
~$ sudo update-alternatives --config python
There are 2 choices for the alternative python (providing /usr/bin/python).

Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/bin/python3.11 2 auto mode
1 /usr/bin/python3.10 1 manual mode
2 /usr/bin/python3.11 2 manual mode

Press <enter> to keep the current choice[*], or type selection number:

//new python version is the default
wsl$ python
Python 3.11.0rc1 (main, Aug 12 2022, 10:02:14) [GCC 11.2.0] on linux

You can set and choose from multiple versions of the same program (as
above), or multiple programs assigned to the same name (like 5 different
apps assigned the name 'editor'.

On Windows you could create a folder of .bat files with names:
editor.bat
image.bat
newsreader.bat

And inside each one list the related executables and REM out the ones
you don't want to use for the time being.

editor.bat
REM "C:\Program Files\Notepad++\notepad++.exe" %1
REM "C:\Windows\SysWOW64\notepad.exe" %1
"C:\Program Files\Sublime Text\sublime_text.exe" %1

Add the folder with the .bat files to your path

Then from any location enter
$ editor file.txt
and it will launch the designated app and open the file in it

Re: Project Euclid Problem 26 SOLVED!!!

<65ef9a32$0$2187660$882e4bbb@reader.netnews.com>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11849&group=comp.os.linux.advocacy#11849

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!feeder.usenetexpress.com!tr2.iad1.usenetexpress.com!198.186.190.30.MISMATCH!news-out.netnews.com!news.alt.net!us1.netnews.com!eu1.netnews.com!not-for-mail
X-Trace: DXC=B2cKIEmCOg_El`G97QnfU[HWonT5<]0T]Q;nb^V>PUfV5[gZBW6J?L\RQ?47NQ;EP[jk8;bbM]=[Y=8`i1dLdkFVWjB\<Me8\AW@GM\IYO6WZT>Oa:X5b?f8X
X-Complaints-To: support@blocknews.net
Date: Mon, 11 Mar 2024 19:56:36 -0400
MIME-Version: 1.0
User-Agent: Betterbird (Windows)
Subject: Re: Project Euclid Problem 26 SOLVED!!!
Newsgroups: comp.os.linux.advocacy
References: <17bb1baebce14546$13883$3298354$802601b3@news.usenetexpress.com> <usidqe$15gr6$2@solani.org> <17bb311956b74503$4$3602787$802601b3@news.usenetexpress.com> <usihki$15j79$1@solani.org> <17bb5814623c8cee$5$2906873$802601b3@news.usenetexpress.com> <uskv5d$16qg6$1@solani.org> <17bba91e8fe3463d$261$2820980$802601b3@news.usenetexpress.com> <17bbc10506ce0c4f$41482$1588242$802601b3@news.usenetexpress.com>
Content-Language: en-US
From: nospam@dfs.com (DFS)
In-Reply-To: <17bbc10506ce0c4f$41482$1588242$802601b3@news.usenetexpress.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Lines: 22
Message-ID: <65ef9a32$0$2187660$882e4bbb@reader.netnews.com>
NNTP-Posting-Host: 127.0.0.1
X-Trace: 1710201394 reader.netnews.com 2187660 127.0.0.1:49771
 by: DFS - Mon, 11 Mar 2024 23:56 UTC

On 3/11/2024 11:58 AM, Leering Larry Piet wrote:

>> https://pari.math.u-bordeaux.fr/
> https://flintlib.org/
> I have settled on the Perl module Math::Prime::Util::GMP:
>
> https://manpages.org/mathprimeutilgmp/3
>
>
> FOSS is the greatest. Who would ever use Microslop?

Any and everyone.

Virtually all FOSS is available for Windows.

Every library and app you talked about here runs on Windows too.

Re: Project Euclid Problem 26 SOLVED!!!

<uso9hs$3tprd$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11853&group=comp.os.linux.advocacy#11853

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: candycanearter07@candycanearter07.nomail.afraid (candycanearter07)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Project Euclid Problem 26 SOLVED!!!
Date: Tue, 12 Mar 2024 01:01:49 -0000 (UTC)
Organization: the-candyden-of-code
Lines: 100
Message-ID: <uso9hs$3tprd$1@dont-email.me>
References: <17bb1baebce14546$13883$3298354$802601b3@news.usenetexpress.com>
<usidqe$15gr6$2@solani.org> <usifaf$2g6s6$1@dont-email.me>
<17bb31d70dea31a5$5$3602787$802601b3@news.usenetexpress.com>
<65ecccb7$0$3242$426a34cc@news.free.fr>
<17bb35765f61452e$1$856620$802601b3@news.usenetexpress.com>
<uso1nm$3s289$2@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 12 Mar 2024 01:01:49 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="e376324c8e0b71c43920b7c37ce8b6b0";
logging-data="4122477"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX194HeNERIYce0kmfOjwzDjmy0d3ifcTgBQjfHjqlEtx7g=="
User-Agent: slrn/pre1.0.4-9 (Linux)
Cancel-Lock: sha1:44SRm1OyM04fwxXpY5hcnrbttwQ=
 by: candycanearter07 - Tue, 12 Mar 2024 01:01 UTC

DFS <nospam@dfs.com> wrote at 22:48 this Monday (GMT):
> On 3/9/2024 4:21 PM, Lazy Larry wrote:
>> On 09 Mar 2024 20:55:19 GMT, Stéphane CARPENTIER wrote:
>>
>>>
>>> Don't be too harsh on python. Last time you checked, you had 5, five,
>>> yes FIVE, versions of python on your own computer. For someone who pretend to
>>> master his computer and to hate python, it tells a lot.
>>>
>>
>> That's Gentoo, honey.
>>
>> I got 3 but I could have 10, 20, or a billion.
>>
>> I can select:
>>
>> [~]# eselect python list
>> Available Python interpreters, in order of preference:
>> [1] python3.11
>> [2] python3.12
>> [3] python2.7
>>
>> Python 3.11 is first because that is the current Gentoo
>> default. But I can switch between all versions at will
>> via:
>>
>> eselect python [1 | 2 | 3]
>>
>> Can you do that with your crippled distro?
>
>
> Of course
>
> update-alternatives (basically manages symlinks)
> https://www.baeldung.com/linux/update-alternatives-command
>
>
> //current
> wsl$ python
> Python 3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0] on linux
>
> //install new python
> wsl$ sudo apt install python3.11
> Setting up python3.11 (3.11.0~rc1-1~22.04) ...
> Processing triggers for man-db (2.10.2-1) ...
>
> //add 2 python entries to the update-alternatives app
> sudo update-alternatives --install /usr/bin/python python
> /usr/bin/python3.10 1
> sudo update-alternatives --install /usr/bin/python python
> /usr/bin/python3.11 2
>
> //choose which python version you want
> ~$ sudo update-alternatives --config python
> There are 2 choices for the alternative python (providing /usr/bin/python).
>
> Selection Path Priority Status
> ------------------------------------------------------------
> * 0 /usr/bin/python3.11 2 auto mode
> 1 /usr/bin/python3.10 1 manual mode
> 2 /usr/bin/python3.11 2 manual mode
>
> Press <enter> to keep the current choice[*], or type selection number:
>
> //new python version is the default
> wsl$ python
> Python 3.11.0rc1 (main, Aug 12 2022, 10:02:14) [GCC 11.2.0] on linux
>
>
>
> You can set and choose from multiple versions of the same program (as
> above), or multiple programs assigned to the same name (like 5 different
> apps assigned the name 'editor'.
>
>
>
>
> On Windows you could create a folder of .bat files with names:
> editor.bat
> image.bat
> newsreader.bat
>
> And inside each one list the related executables and REM out the ones
> you don't want to use for the time being.
>
> editor.bat
> REM "C:\Program Files\Notepad++\notepad++.exe" %1
> REM "C:\Windows\SysWOW64\notepad.exe" %1
> "C:\Program Files\Sublime Text\sublime_text.exe" %1
>
> Add the folder with the .bat files to your path
>
> Then from any location enter
> $ editor file.txt
> and it will launch the designated app and open the file in it

I'm pretty sure? that debian comes preinstalled with
update-alternatives.
--
user <candycane> is generated from /dev/urandom

Re: Project Euclid Problem 26 SOLVED!!!

<17bc0c57acb1478a$133184$1098985$802601b3@news.usenetexpress.com>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11884&group=comp.os.linux.advocacy#11884

  copy link   Newsgroups: comp.os.linux.advocacy
From: nuxxie@linux.rocks (Nuxxie)
Subject: Re: Project Euclid Problem 26 SOLVED!!!
Newsgroups: comp.os.linux.advocacy
References: <17bb1baebce14546$13883$3298354$802601b3@news.usenetexpress.com> <usidqe$15gr6$2@solani.org> <17bb311956b74503$4$3602787$802601b3@news.usenetexpress.com> <usihki$15j79$1@solani.org> <17bb5814623c8cee$5$2906873$802601b3@news.usenetexpress.com> <uskv5d$16qg6$1@solani.org> <17bba91e8fe3463d$261$2820980$802601b3@news.usenetexpress.com>
User-Agent: Pan/0.146 (Hic habitat felicitas; d7a48b4 gitlab.gnome.org/GNOME/pan.git)
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Lines: 14
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!feeder.usenetexpress.com!tr2.iad1.usenetexpress.com!news.usenetexpress.com!not-for-mail
Date: Tue, 12 Mar 2024 14:58:49 +0000
Nntp-Posting-Date: Tue, 12 Mar 2024 14:58:49 +0000
X-Received-Bytes: 1124
Organization: UsenetExpress - www.usenetexpress.com
X-Complaints-To: abuse@usenetexpress.com
Message-Id: <17bc0c57acb1478a$133184$1098985$802601b3@news.usenetexpress.com>
 by: Nuxxie - Tue, 12 Mar 2024 14:58 UTC

On Mon, 11 Mar 2024 08:40:32 +0000, Farley Flud wrote:

>>
>>
> The second image is now corrected:
>
> https://i.postimg.cc/FmKpsHzY/prob26-10k.png
>

This is definitely a global first. Such n plot has never before appeared
anywhere in the history of civilized man. Never.

And it's all due to GNU/Linux/FOSS.

Re: Project Euclid Problem 26 SOLVED!!!

<usqd6k$19l46$1@solani.org>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11897&group=comp.os.linux.advocacy#11897

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!reader5.news.weretis.net!news.solani.org!.POSTED!not-for-mail
From: Physfitfreak@gmail.com (Physfitfreak)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Project Euclid Problem 26 SOLVED!!!
Date: Tue, 12 Mar 2024 15:16:21 -0500
Message-ID: <usqd6k$19l46$1@solani.org>
References: <17bb1baebce14546$13883$3298354$802601b3@news.usenetexpress.com>
<usidqe$15gr6$2@solani.org>
<17bb311956b74503$4$3602787$802601b3@news.usenetexpress.com>
<usihki$15j79$1@solani.org>
<17bb5814623c8cee$5$2906873$802601b3@news.usenetexpress.com>
<uskv5d$16qg6$1@solani.org>
<17bba91e8fe3463d$261$2820980$802601b3@news.usenetexpress.com>
<17bc0c57acb1478a$133184$1098985$802601b3@news.usenetexpress.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Tue, 12 Mar 2024 20:16:20 -0000 (UTC)
Injection-Info: solani.org;
logging-data="1365126"; mail-complaints-to="abuse@news.solani.org"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:PxlcIOQIWYBM6Mmcw7W//byi2Q8=
In-Reply-To: <17bc0c57acb1478a$133184$1098985$802601b3@news.usenetexpress.com>
X-Antivirus-Status: Clean
Content-Language: en-US
X-User-ID: eJwNy7kBwDAIA8CVeEW8DmDtP0LcXHfpUEwFEpFMoqmKDdL6ZESrsullRpEtmXbMvXch62dsn99L2VbZIT9jMBXo
X-Antivirus: Avast (VPS 240312-6, 3/12/2024), Outbound message
 by: Physfitfreak - Tue, 12 Mar 2024 20:16 UTC

On 3/12/2024 9:58 AM, Nuxxie wrote:
> On Mon, 11 Mar 2024 08:40:32 +0000, Farley Flud wrote:
>
>>>
>>>
>> The second image is now corrected:
>>
>> https://i.postimg.cc/FmKpsHzY/prob26-10k.png
>>
>
> This is definitely a global first. Such n plot has never before appeared
> anywhere in the history of civilized man. Never.
>
> And it's all due to GNU/Linux/FOSS.
>

It is a plot nice to have access to for some enthusiasts. Make sure it
doesn't get lost. Place is somewhere on the web where related
enthusiasts can permanently access it at will.

It provides a rare peep into how things are for larger integers at the
denominator of rational numbers. Not derived, but actually computed.

Then, somebody should derive such features by math alone, not computing.
At least the main features. It could be publishable too, if not derived
before. But I doubt it's something novel. Math people have done all
sorts of investigations, many of them even long ago.

Here are some of the facts it depicts.

- the plot shows, with certainty, that strange surprises aren't in store
(this is why I wanted to see it)

- it shows firm limits to the sizes of repeated decimals' length, that
depend only on the size of the integer in the denominator

- it shows four trends (so far) as one goes for larger integers in
denominator

- it hints on endless repeating structures inside the 1 to 9 interval,
as we go deeper and deeper into higher and higher resolution to deal
with numbers existing therein

All the four features above should hold for any base, not just 10.
There's really nothing special about base 10. The base can be chosen as
any positive real number. In fact, it would be nice to have the same
plot, but for number system in base e :-)

The reason I like this "e" base is, there must be a reason (which I
still don't know or remember) that when used as base in logarithms,
makes them called "natural" logarithm. There must be some special
significance to it.

--
This email has been checked for viruses by Avast antivirus software.
www.avast.com

Re: Project Euclid Problem 26 SOLVED!!!

<17bc2017893ab165$985$3331982$802601b3@news.usenetexpress.com>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11906&group=comp.os.linux.advocacy#11906

  copy link   Newsgroups: comp.os.linux.advocacy
From: ff@linux.rocks (Farley Flud)
Subject: Re: Project Euclid Problem 26 SOLVED!!!
Newsgroups: comp.os.linux.advocacy
References: <17bb1baebce14546$13883$3298354$802601b3@news.usenetexpress.com> <usidqe$15gr6$2@solani.org> <17bb311956b74503$4$3602787$802601b3@news.usenetexpress.com> <usihki$15j79$1@solani.org> <17bb5814623c8cee$5$2906873$802601b3@news.usenetexpress.com> <uskv5d$16qg6$1@solani.org> <17bba91e8fe3463d$261$2820980$802601b3@news.usenetexpress.com> <17bc0c57acb1478a$133184$1098985$802601b3@news.usenetexpress.com> <usqd6k$19l46$1@solani.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Lines: 40
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!feeder.usenetexpress.com!tr2.iad1.usenetexpress.com!news.usenetexpress.com!not-for-mail
Date: Tue, 12 Mar 2024 21:00:43 +0000
Nntp-Posting-Date: Tue, 12 Mar 2024 21:00:43 +0000
X-Received-Bytes: 2279
Organization: UsenetExpress - www.usenetexpress.com
X-Complaints-To: abuse@usenetexpress.com
Message-Id: <17bc2017893ab165$985$3331982$802601b3@news.usenetexpress.com>
 by: Farley Flud - Tue, 12 Mar 2024 21:00 UTC

On Tue, 12 Mar 2024 15:16:21 -0500, Physfitfreak wrote:

>
> It provides a rare peep into how things are for larger integers at the
> denominator of rational numbers. Not derived, but actually computed.
>
> Then, somebody should derive such features by math alone, not computing.
> At least the main features. It could be publishable too, if not derived
> before. But I doubt it's something novel. Math people have done all
> sorts of investigations, many of them even long ago.
>

If you want, I can provide a file containing the data up to 100,000
or perhaps 1 million.

The linear trend can be investigated.

I was thinking about doing this myself but I haven't got the time
right now. I am not a tenured professor and I do not have an abundance
of free time (unfortunately).

>
> All the four features above should hold for any base, not just 10.
> There's really nothing special about base 10. The base can be chosen as
> any positive real number. In fact, it would be nice to have the same
> plot, but for number system in base e :-)
>

That is quite true -- for any integer base it will be the same.

For an irrational base, however, I cannot comment.

Correct me if I am wrong, but an irrational base has no practical
or even theoretical utility in expressing INTEGER quantities, and
INTEGER quantities are the basis for our counting system.

Sure, we can express PI as 1.0 in base PI but what does that
improve?

Re: Project Euclid Problem 26 SOLVED!!!

<usqmtv$19pnj$1@solani.org>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11916&group=comp.os.linux.advocacy#11916

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!reader5.news.weretis.net!news.solani.org!.POSTED!not-for-mail
From: Physfitfreak@gmail.com (Physfitfreak)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Project Euclid Problem 26 SOLVED!!!
Date: Tue, 12 Mar 2024 18:02:22 -0500
Message-ID: <usqmtv$19pnj$1@solani.org>
References: <17bb1baebce14546$13883$3298354$802601b3@news.usenetexpress.com>
<usidqe$15gr6$2@solani.org>
<17bb311956b74503$4$3602787$802601b3@news.usenetexpress.com>
<usihki$15j79$1@solani.org>
<17bb5814623c8cee$5$2906873$802601b3@news.usenetexpress.com>
<uskv5d$16qg6$1@solani.org>
<17bba91e8fe3463d$261$2820980$802601b3@news.usenetexpress.com>
<17bc0c57acb1478a$133184$1098985$802601b3@news.usenetexpress.com>
<usqd6k$19l46$1@solani.org>
<17bc2017893ab165$985$3331982$802601b3@news.usenetexpress.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Tue, 12 Mar 2024 23:02:23 -0000 (UTC)
Injection-Info: solani.org;
logging-data="1369843"; mail-complaints-to="abuse@news.solani.org"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:dERArzh3vTyqz97DjXeb5qzqPrA=
X-Antivirus: Avast (VPS 240312-6, 3/12/2024), Outbound message
Content-Language: en-US
In-Reply-To: <17bc2017893ab165$985$3331982$802601b3@news.usenetexpress.com>
X-User-ID: eJwNy9EVADEEBMCWCEuUszzpv4S7+R9YaEx6IBwPrzk43b6BDMvBkNMW5dSWl7Kcv0g6j1aSd6t6SuXqrsoHaJwVqg==
X-Antivirus-Status: Clean
 by: Physfitfreak - Tue, 12 Mar 2024 23:02 UTC

On 3/12/2024 4:00 PM, Farley Flud wrote:
> On Tue, 12 Mar 2024 15:16:21 -0500, Physfitfreak wrote:
>
>>
>> It provides a rare peep into how things are for larger integers at the
>> denominator of rational numbers. Not derived, but actually computed.
>>
>> Then, somebody should derive such features by math alone, not computing.
>> At least the main features. It could be publishable too, if not derived
>> before. But I doubt it's something novel. Math people have done all
>> sorts of investigations, many of them even long ago.
>>
>
> If you want, I can provide a file containing the data up to 100,000
> or perhaps 1 million.
>
> The linear trend can be investigated.
>
> I was thinking about doing this myself but I haven't got the time
> right now. I am not a tenured professor and I do not have an abundance
> of free time (unfortunately).
>
>
>>
>> All the four features above should hold for any base, not just 10.
>> There's really nothing special about base 10. The base can be chosen as
>> any positive real number. In fact, it would be nice to have the same
>> plot, but for number system in base e :-)
>>
>
> That is quite true -- for any integer base it will be the same.
>
> For an irrational base, however, I cannot comment.
>
> Correct me if I am wrong, but an irrational base has no practical
> or even theoretical utility in expressing INTEGER quantities, and
> INTEGER quantities are the basis for our counting system.
>
> Sure, we can express PI as 1.0 in base PI but what does that
> improve?
>

First, I wouldn't engage in creating a plot for a wider range of
integers in denominator, just like you did, at this point. If it was for
me, I'd first remove what's bothering me about how it is produced, and
that's the fact that I don't know how that software works.

Again, if it was for me to do it, I'd first write a simple program
myself, to find the length of repeating decimals for each number in the
denominator, to make sure everything is the way it should be. If I would
get identical results to what the software produced, only then, use the
software for wider ranges of integers.

And about irrational bases and integer quantities, I remind you that the
irrational e base system of numbers are full of integers :) You just
have to let go of comparisons to base 10 situation, and only think in
terms of base e as the only math you have at your disposal. Then
everything works just like before, and for everything in math.

The two numbers in base e that I suggested in that challenge problem to
add and get the result, were, in base e, two integers! It doesn't matter
one bit that their base 10 number is not integer, because we're doing
the math in base e now. Integers are perfectly described in the base e.
You saw it for yourself that nothing came after the radix points in
those numbers, so it wasn't even necessary to put the dots there :-)

The entire math, as it is now, can be based on a number system with base
e. In this system, numbers 1 and 2 mean exactly what they do in base 10,
but the rest of the numbers are of course different from their base 10
representation. Let me give an example.

Say there are 5 Nazi cro-magnons standing on the deck of a U.S. navy war
ship close to Yemen, preparing to get on F-35s to bomb the Houthis for
no other reason than their dicks want so, and their dicks want so,
because those Nazis are obedient servants of Satan. MIGHT AS WELL, and
for no other reason that makes sense. Therefore, a Houthi in Yemen calls
you and asks you this,

"I want to know how many cro-magnons are standing there on the deck
to adjust the anti-personnel warhead load on this missile accordingly,
before they get on their F-35s. We want the lightest options we have, to
make the missiles fastest as possible, but enough to wipe the Nazis
clean off of that deck."

But you have a problem. Houthis, turns out, use the number system in
base e only. They know nothing of a nonsensical "base 10" in use. So
what would you do to tell them that there are "5" of them on the deck?

Fortunately, you followed Physfit's advice and wrote that little program
that converts this unfamiliar number "5" into something Houthis
understand as 5, and you relay the information to them as:

"There are 12.02 ... number of cro-magnons standing on the deck."

With "..." representing more and more digits to any accuracy that you
ever wish to have. By the way, 12.02 part is correct. I just calculated
it. But it's not complete, of course. The numbers to the right of the
radix point continue. But for Houthis, even 12.02 is enough to know
exactly how many Nazis are on the deck.

So your argument that this conversion of 5 into 12.02.... introduces
unnecessary difficulties, is really countered perfectly by countless
cases of _integers_ in e base system, for which their 10 base
representations have horribly looking never ending decimals. Why
perfectly? Because life and business both, deals with much, much more
cases of partial amounts to measure. Amounts of stuff that cannot be
described with whole numbers no matter what base you're working in.
That's why.

So e or 10 base or whatever base, is immaterial. Math works equivalently
in all such cases, and as efficiently too.

--
This email has been checked for viruses by Avast antivirus software.
www.avast.com


computers / comp.os.linux.advocacy / Re: Project Euclid Problem 26 SOLVED!!!

Pages:12
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor