Remy José Cano Ramírez on Sat, 29 Dec 2012 20:05:41 +0100
[
Date Prev
] [
Date Next
] [
Thread Prev
] [
Thread Next
] [
Date Index
] [
Thread Index
]
Square of an unsigned integer without products.
To
:
pari-users@pari.math.u-bordeaux1.fr
,
pari-dev@pari.math.u-bordeaux1.fr
,
remy@ula.ve
Subject
: Square of an unsigned integer without products.
From
: Remy José Cano Ramírez <
aallggoorriitthhmmuuss@gmail.com
>
Date
: Sat, 29 Dec 2012 19:05:33 +0000
Delivery-date
: Sat, 29 Dec 2012 20:05:41 +0100
Dkim-signature
: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=5G4NDS3GUGNd4LaQV7LcoziAkS9dCRMW8eBqKWJk/J0=; b=fIuM9+rms5g7xJM94OrpGN8sna6k8w4CJvE4sH52TRbeKHE94DMShMrYJ/413tJ4wb IxOHnNBH0Smi5ZQPdgLw4XNi2mRTmcdLeFnxnSqdhZ8CywV+pXvJyRDda+w7n3I1s5QR vTL2cCuanc9X1LcxiGXq60H8TTQqaQks9+TZQUlqOZrc8jKKk6y2iwcOnbzWcX2X3jMB JQK182nZaofCF18txCgtoPOwKWxl1+WjrxqLma7WCoC7bdsF+PnGSIfrX4ObnK1CvKcl NmxKERVOt582d2ZaoxWOm7KzGi0c1GRPv+Er9CxmSv0mbON+aYqpAUM3sMB7NHWUaaY3 D3dw==
Greetings,
About the following:
----------------------------------------------------------------------------------------
/*
Please review and comment if at certain low level the computers today already
make such calculations with the method shown below.
*/
uisqr
(
x
)
=
{
my
(
i
,
j
,
k
)
;
x
+
sum
(
i
=
1
,
2
,
sum
(
j
=
1
,
(
x
-
1
)
,
sum
(
k
=
(
j
+
1
)
,
x
,
1
)
)
)
}
;
----------------------------------------------------------------------------------------
(Also available at:
http://pastebin.com/qb7FHEzA
)
Regards,
Remy
Follow-Ups
:
Re: Square of an unsigned integer without products.
From:
Maximilian Hasler <mhasler@martinique.univ-ag.fr>
Prev by Date:
Re: Comparing bezoutres and polresultant
Next by Date:
Re: Square of an unsigned integer without products.
Previous by thread:
Re: A little fix that might be useful.
Next by thread:
Re: Square of an unsigned integer without products.
Index(es):
Date
Thread