Bill Allombert on Sun, 16 Mar 2025 14:48:52 +0100
|
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
Re: How to find a congruence to the type of that simple equation without factoring the modulus?
|
- To: pari-users <pari-users@pari.math.u-bordeaux.fr>
- Subject: Re: How to find a congruence to the type of that simple equation without factoring the modulus?
- From: Bill Allombert <Bill.Allombert@math.u-bordeaux.fr>
- Date: Sun, 16 Mar 2025 14:48:45 +0100
- Delivery-date: Sun, 16 Mar 2025 14:48:52 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/simple; d=math.u-bordeaux.fr; s=2022; t=1742132930; bh=p8XaGjjGY7oyH3ncol6HMbTtDp2QrSKx4tI+MZD8PlE=; h=Date:From:To:Subject:References:In-Reply-To:From; b=J1CoZgp2uz2ZQ75BMZKWSdnSgztRyhlNbmrHywOz+zW77aOH6eZrU0047QciIlHM4 8PC4h7979C/MsWWK/H8KzUW66OtYzBKEJ/FosmM+O0bmghy1ToM25w+/DkV4YqZy0M CQQcNAsNCONgdh4Zx82MBrLCzJXNO+QaScp5M7J7yI2GsxTt/1ChFGiyennZVy7SUt 43pf8GgUeJ3QeeWXFZGs/tgU4n3BITKFYi3pm3+tDpizSPuopKNZ/1auNkSX+K6tew PZUlVbH6srb9rBaqAk0sIFpI13d0rIcg0VDWrrwy3HXw/+INLqzJjxT+KfO74hyI+O fVuWGYJMNWSg0oksZtX5D3XcVnJGmPZRUvY1umAvSzcluM4152dTXqcQp7ThANWZck GhX9xFNpfnNLdg4UjT3VZWWOhE+1zZIRl7HKdxC/muWUcXNf9VYpk/miJHuZpTUQf9 1aUuSiWnRGPbIfFRyTMyNLIZVClSQeZLbPs35zcE7MI+yYXLM7i0u+OIyUv5hPQHNZ ZZ/gfj25hxScTI46UnVhE2zs55xCp2OCGOEziWzcj1bAfpJaScDyfbi5y6GqqM6MGZ +4xW0p6u4hB3ovkfJfix0EnvyGsxcOL8S5ZC4rchNUog95CNp9fzgOzylakhGSpXTQ VBjAeYd9p3BU4BTwzTrdQehw=
- In-reply-to: <d357bff6-e265-4256-88f8-d425beb6ecea@laposte.net>
- Mail-followup-to: pari-users <pari-users@pari.math.u-bordeaux.fr>
- References: <d357bff6-e265-4256-88f8-d425beb6ecea@laposte.net>
On Sun, Mar 16, 2025 at 12:22:17PM +0100, Laël Cellier wrote:
> > > Bonjour,simple question. I ve B and a semiprime A which are very large
> > > unrelated fixed integers impossible to factor.How to find y and z such as
> > > y²≡z²×B mod A? Which pari functions to use? Nfroots? Cordialement,
>
> > You best bet is zncoppersmith, but this will only work if there is a solution
> (y,z) with relatively small y and z which will almost never be the case.
>
> > You need fundamentaly new ideas.
>
> > Cheers,
> > Bill.
>
> Hi, sorry for the delay.
> And if I’m free to chose B² mod A (thereby being indirectly free to chose B),
> and thus only A can’t be chosen, would it be something easy to make y and z
> findable through zncoppersmith as a result, and if yes, how ?
This is a trick question, but you are just going in loops.
Say you chose B^2=1, then you have two choice for B:
B = 1 then of course y=±z
B = -1 ,then you need to solve a problem equivalent to computing a square root of -1 modulo A,
which is the problem you try to solve, so you are not making progress.
Cheers,
Bill.