Jacques Gélinas on Mon, 23 Jul 2018 18:31:22 +0200
|
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
Using taylor() with polynomials in many variables
|
- To: "pari-users@pari.math.u-bordeaux.fr" <pari-users@pari.math.u-bordeaux.fr>
- Subject: Using taylor() with polynomials in many variables
- From: Jacques Gélinas <jacquesg00@hotmail.com>
- Date: Mon, 23 Jul 2018 16:31:18 +0000
- Accept-language: fr-CA, en-US
- Authentication-results: spf=none (sender IP is ) smtp.mailfrom=jacquesg00@hotmail.com;
- Delivery-date: Mon, 23 Jul 2018 18:31:22 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hotmail.com; s=selector1; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=NaDvGGy5OD83rPqwe/xw4hrDD7M6DWB0MO4CDLKVXOY=; b=VqSBysCTUqv9AAvJyvl1E0eEeByDvtFCwOcK5BFzAKBM3cLJYvGZeB4fzy6CnqEZUVPNIGJFkf5h1I0868Y+5JD3QgycdnGnBKKL7CsJuG3BFN+7Ejp0PSS4XqC/soKZtuOnvc+/uOoWBo7ySbDaHgUGVRPETpL/BNrvomUUUn6j/r+nGQ2n7ljK4o2lqtycY0MobJnljWe2nTjxSV9M0WiXSjibiGnSQvjbUEJu/S+qTRrSRLwbEt6mozFvaI1TpNQfqbZSj53olEzObx29wwoyGpBeevTj8Wy+oT9H50hQxZLRtFwjhY9cz++ACu8FUjE3fuHbFoVxyHtSnk2jGA==
- Thread-index: AQHUIqJkJ2MmHUoMDkyr5iDdn+14sA==
- Thread-topic: Using taylor() with polynomials in many variables
Consider the polynomial expression
E = r*(n-1)*(2*r+1)*(2+xx)-3*(n-r)*(2*r+1-x*y);
and I want to show it is positive under the constraints
n=2,3,4,... ; r=2,...,n-1; 1<= x,y <= 1;
Since E>0 should hold for all integers n, the coefficients of the
powers of n-2 could all be positive under the other constraints.
====> How can PARI/GP give me these taylor coefficients ??? <=====
taylor(subst(E,n,m+2),m) ==
(-3*y*r + (3*m + 6)*y)*x + (((2*m + 2)*xx + (4*m + 10))*r^2 + ((m + 1)*xx +
(-4*m - 7))*r + (-6 - 3*m + O(m^16)))
I **think** the taylor series in m is found, but cannot be shown because of
the variables display order (x and y have precedence).
And of course, I do not need the O() term.
Jacques Gélinas