henrytxzh

20 Reputation

2 Badges

18 years, 16 days

MaplePrimes Activity


These are Posts that have been published by henrytxzh

Dear all, a:=.5; s:=.2; sol:=solve(1+(5*x)*(log(5*x)-1)=.5*v-sqrt(k)*x, x); eval(sol, [k=.98, v=.4]); gives me 0.2019811135 but there should be 2 solutions; if I put the values of k and v before solve: > a:=.5; s:=.2; k:=.98; v:=.4; a := 0.5 s := 0.2 k := 0.98 v := 0.4 > sol:=solve(1+(5*x)*(log(5*x)-1)=.5*v-sqrt(k)*x, x); sol := 0.2019811135, 0.1288902502 i need the 2nd solution and the purpose of this code is so that i can change the value of k and v so I need to make the 1st 3 lines work.
Page 1 of 1