Bill Allombert on Sun, 12 Jan 2025 00:01:30 +0100
|
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
Re: What’s the equivalent of Mathematica’s Function in Pari/Gp
|
- To: pari-users@pari.math.u-bordeaux.fr
- Subject: Re: What’s the equivalent of Mathematica’s Function in Pari/Gp
- From: Bill Allombert <Bill.Allombert@math.u-bordeaux.fr>
- Date: Sun, 12 Jan 2025 00:01:26 +0100
- Delivery-date: Sun, 12 Jan 2025 00:01:30 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/simple; d=math.u-bordeaux.fr; s=2022; t=1736636488; bh=BCJ7Zi2anFdO1jtZZ9qKRM34RQyz6eKnRqfFQJWrpck=; h=Date:From:To:Subject:References:In-Reply-To:From; b=IOznDjSn2CCpt0e9A6CEVkuuKw3h0SvkFiOx3VRabu5sU0H16xpNqm5ev4h+au/OC ITNqwlqJ2D2T1LJVpq7CuDJJF0TaIF1s5cqAOLQhPfJn+E0WC+5aKqaZmUGKzRO0wC wTcNeIk3SDiGnNDVyoqAgyW/fe7tZy5B5TChkuti7pzhmsx9AjpUtVyCvRZYbkFcEi 72dUdRsH3U7SQKYTPWUgTZp+xJhT7XjJzsTDaHkP/hefcy1pPhpm49uKMcPqEtLPFe plyBI9PWjqSD4/qh7gejOMlQ3xfvp/jSce7KntZNm8YEen0grx9Ra9NXhGkF+0c1Nf NAc9xkdsONgYV3x2zLTfsR2xE5zt+zCYJb2q9IkezvZ0knGUsRME9XrF2+gQgu4CgV 7dmJSkazcp4iTb8hJonE5m6JKfEIguaSjPwntBf/2bz25E8aid4EGbQQCMaqamte7F 5WCJTe03MMPpJw4Q3js/BAxGRC9Aisgp41utoO6oSMMSb5UmRviEBE9DFA5R6o3y5K LQQ4F9+0ukovvuq7SHoTQXflkWKUaQbdXuqHhm7f6DGPXS1grSyj2zF5QEFpaDApxu uVk7Qa1Bh8EEH0m8cYijEVIgQgJJvY2Gqi0WRhdd17y08CfHvPqn0oAGIIkwTb9grk omuE1wd7I747S44qWmpGBGtc=
- In-reply-to: <c04a3a7d-801e-4d5a-a5d9-3d1103685924@laposte.net>
- Mail-followup-to: pari-users@pari.math.u-bordeaux.fr
- References: <c04a3a7d-801e-4d5a-a5d9-3d1103685924@laposte.net>
On Sat, Jan 11, 2025 at 10:59:38PM +0100, Laël Cellier wrote:
> Bonjour,
>
> simple question, in mathematica, I can write something like this :
> Solve[((25)^2 + x RSA260)/(y) == (Floor[RSA260^(1/2)] + 1)^2, {x, y},
> Integers]
> where RSA260 is variable, and it returns me a value of x and y for which the
> equation is true.
Does it just try every couple (x,y) ?
You can solve that in GP using gcdext.
Cheers,
Bill.