American Citizen on Mon, 27 Nov 2023 02:44:41 +0100
|
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
asking for a simple locally soluble algorithm for a quartic
|
- To: pari-users@pari.math.u-bordeaux.fr
- Subject: asking for a simple locally soluble algorithm for a quartic
- From: American Citizen <website.reader3@gmail.com>
- Date: Sun, 26 Nov 2023 17:44:36 -0800
- Delivery-date: Mon, 27 Nov 2023 02:44:41 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1701049477; x=1701654277; darn=pari.math.u-bordeaux.fr; h=content-transfer-encoding:subject:from:to:content-language :user-agent:mime-version:date:message-id:from:to:cc:subject:date :message-id:reply-to; bh=QpIYOkyrPqutOA3X/VwVicGzIeQAman7UhKoDWEwY/c=; b=QFI4cndUh3emzRpMiAhUYuburo1KOS8jz9AKZhJPfnnUtvhOZ3MUcqTu3QY5+2scGB lRM6aSLKcVHC9P5OcrjDyKc4sx2kYx8QOkHxggzRdgKlUg+BGW60kK1uBm7C3JkBaCfA I8d/c6OAnOsPsR3IIrkv+FlOy9cwuvzfk7PdKS1LJ6DwtmO3vVT1pMf56pz1q4hFc2d3 cufExKJt1dF1tw3/O2kTMVpodCikboqbtNt3Y2RgJFlz6X1HyYT450Gz4g8ERUFwl05U iQ9Q4LhnHEGK/ZKgM/l2uqdzq0KU2C7XPoqdqFLVKf4zPxtNpjZRHCoosOoEKaDRHXQk A6Jg==
- User-agent: Mozilla Thunderbird
Does anyone have a simple GP-Pari script which outputs 0 for false and 1
for true when the input is a quartic in vector format: [a,b,c,d,e] where
the quartic is a*x^4 + b*x^3 + c^x^2 + d^x +e and we are trying to find
the everywhere_local_solubility of the quartic?
Example GP Pari function:
everywhere_locally_soluble(Q) = [0,1] where 0 means false and 1 means true.
I tried to follow the algorithms in Chapter 3 of Cremona's book on
elliptic curve algorithms, but hit difficulty on trying to write down in
the GP Pari script the discriminant of a quartic, which forced me to go
to Wolfram Mathematica to find this expression, which is horribly
complex and incredibly easy to mistype the values from the image
graphics file. It is fascinating (in a perverse way) to find that image
files are posted for long equations, thus forcing a person to manually
transcribe them, and most people have difficulty doing this without
transcription error.
I still am stuck in these algorithms in Chapter 3 and trying to
successfully transcribe them into GP-Pari script.
I appreciate the assist.
THANK YOU.
Randall