00:01 -!- Aattila(n=attila@fw.rajk.uni-corvinus.hu) has joined #maxima 00:04 thank you HaraldG :) 00:04 that solved the issue 00:04 how do I write the equation 3sqrt(x) 00:04 where there is that little three on the sqrt sign? 00:16 I think you need x^(1/3) ... 00:17 Actually sqrt(x) is internally represented as x^(1/2) too. 00:24 right 00:24 so x^(1/3) works 00:24 Any idea on how to take all the equations I've put into the device and turn that into LaTeX? 00:25 all lines up to % current 00:34 Hm, there is tex(), but I think it only works on single expressions/lines. I'm not sure, if there is a ready solution, for your specific purpose. 00:35 hmm that would be a sweet thing to program into the application 00:35 Hm yes. I once planned to do it, but never really got started. 00:39 Try something like map(lambda([x], tex(ev(x))), [%i1, %i2, %i3]); 00:39 Perhaps you can come up with somethink clever to construct your list of symbols. 00:40 There is a global variable "labels", which contains all labels assigned so far. 00:41 hmm HaraldG I was thinking there could be a simple macro to go to the maxima command line hit up to the beginning counting each time getting n then do n-1 till n=0 00:42 from there execute two commands enter then convert to TeX 00:42 ohhh 00:42 wait 00:43 figured it out 00:44 alls what yuo need is a select all function 00:44 select all the text, then copy TeX 00:44 paste in a text editor 00:44 execute from there 00:46 Not sure if I understand what you mean. 00:46 However I have to sleep now. Feel free to continue talking, I'll come back and read the logs. 01:13 -!- flustered(n=daddy@202.134.251.153) has joined #maxima 01:39 if I export as a .html file 01:39 where are all the src/filename.png files stored? 01:52 -!- Prax01D(n=Prax01D@149.99.90.29) has joined #maxima 01:52 found it 01:52 :) 01:54 anyone know how to do implicit differientiation? 01:57 anyone have an example for x^2+y^2 = 1 ? 01:57 how to get y prime? 01:57 solving for y prime 02:40 if I was doing implicit differentiation on x^2+y^2 = 1 how would I get 2x+2y(y')=0 03:18 -!- Ephexis(n=a@201-1-57-63.dsl.telesp.net.br) has joined #maxima 04:09 is there how to show expressions in engineering notation? and how to shot the angle, in degree, of a polar form? 04:09 *show 04:18 dn4: Too late, but depends(y,x). Then diff(x^2+y^2=1,x) -> 2*x + 2*y*diff(y,x) = 0. 04:19 Ephexis: What kind of engineering notation? Like 123.456e+6? Not that I know of. 04:20 Ephexis: To get the angle in degrees, you have to convert from radians. 04:28 hmm thanks 06:15 -!- w3rdn4(i=werdnAA@cpe-24-26-249-179.satx.res.rr.com) has joined #maxima 06:26 how do you call the previous anything to do the same thing to that previous thing 07:17 -!- trebor_home(n=trebor@L020d.l.pppool.de) has left #maxima 07:53 -!- Prax01D(n=Prax01D@149.99.96.66) has joined #maxima 12:49 -!- HaraldG(n=rldprog@chello080108070152.13.11.univie.teleweb.at) has joined #maxima 12:53 dn4: I didn't understand your question from 6:26. What is wrong with % ? 13:59 -!- Prax01D(n=Prax01D@tor58-5-76-214.dynamic.rogerstelecom.net) has joined #maxima 14:48 -!- rtoy_(n=chatzill@user-0c8hpll.cable.mindspring.com) has joined #maxima 18:03 -!- CHodapp_(n=angel@cpe-75-179-155-26.woh.res.rr.com) has joined #maxima 19:34 -!- Prax01D(n=Prax01D@tor58-4-75-235.dynamic.rogerstelecom.net) has joined #maxima 22:14 I figured it out 22:14 diff(%,x) 22:14 that worked 22:21 -!- HaraldG(n=harald@217.19.46.22) has joined #maxima 23:44 any idea though on how to do implicit differentiation>?