Path: csiph.com!x330-a1.tempe.blueboxinc.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!news.glorb.com!news-out.readnews.com!news-xxxfer.readnews.com!newspump.sol.net!posts.news.twtelecom.net!nnrp2.twtelecom.net!not-for-mail From: Peter Newsgroups: comp.soft-sys.math.mathematica Subject: Re: About C[i] Date: Wed, 30 Mar 2011 09:08:18 +0000 (UTC) Organization: Steven M. Christensen and Associates, Inc and MathTensor, Inc. Sender: steve@smc.vnet.net Approved: Steven M. Christensen , Moderator Message-ID: References: Lines: 33 NNTP-Posting-Date: 30 Mar 2011 08:08:38 GMT NNTP-Posting-Host: dceed204.news.twtelecom.net X-Trace: DXC=c8F3I:^XC:Hoo^C_A=>8kQj6];[h;PUXBgbTe6cLf4b_YJSEFiONJ7[GoVhUI^8nEU^>] X-Complaints-To: abuse@twtelecom.net Xref: x330-a1.tempe.blueboxinc.net comp.soft-sys.math.mathematica:1244 Am 29.03.2011 13:57, schrieb olfa: > Hi Mathematica community, > > I have this solution set: > ((C[1] | C[2]) \[Element] Integers&& i == C[2]&& k == 7 C[1]&& > kP == 0&& iP == C[1] + C[2]) ||((C[1] | C[2]) \[Element] Integers > && > i == C[2]&& k == 2 + 7 C[1]&& kP == 2&& iP == C[1] + C[2]) > > it means that it is an infinite solution set. > I need to expess it without C[1] and C[2] since C[1]==k/7||(k-2)/7 > and C[2]==i . consequently the solution set would be expressed as > (kP==0&& iP==k/7+i)||(kP==2&&iP==(k-2)/7+i) > is it possible? how?can we say that is now transformed into finite > set? > > thank you very much for your help. > Hi, this is far from being finite. You've put the property "being integer" from C[1],C[2] to (i,k/7) and (i,(k-2)/7) respectively. It is just a bit less effort to calculate e.g.: Table[{{c2, 7 c1, 0, c1 + c2}, {c2, 2 + 7 c1, 2, c1 + c2}}, {c1, -5, 5}, {c2, -5, 5}] than a table where you have to test for either k/7 or (k-2)/7 to be Integer. hth, Peter