[sage-support] Re:width of the Sage notebook input cell

2011-02-26 Thread Dmitry Shkirmanov
  input cell can not be carried over to the next line and  comes out of
  view. Is it possible to change such behaviour?
 
 Can you be more specific?  In my browser at least it just carries over
 to the next line, spaces or not, commas or not.  Maybe give us the
 example, what browser, etc.
 
I have browser iceweasel(installed from repository), operating system is debian 
lenny.
For example the expression
#
result=fullcorrectirovka(m_nu=0).expand().simplify_rational().factor().collect(sigma_a^2).collect(sigma_l^2).collect(sigma_2^2).collect(sigma_2^4).collect(sigma_l^4).collect(sigma_a^4)
#
is seen like this(look please at the active cell of the image): 
http://img831.imageshack.us/i/image1lj.jpg/

P.S what is the name of your browser?

-- 
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org


[sage-support] Re: width of the Sage notebook input cell

2011-02-26 Thread Jason Grout

On 2/26/11 6:00 AM, Dmitry Shkirmanov wrote:

input cell can not be carried over to the next line and  comes out of
view. Is it possible to change such behaviour?


Can you be more specific?  In my browser at least it just carries over
to the next line, spaces or not, commas or not.  Maybe give us the
example, what browser, etc.


I have browser iceweasel(installed from repository), operating system is debian 
lenny.
For example the expression
#
result=fullcorrectirovka(m_nu=0).expand().simplify_rational().factor().collect(sigma_a^2).collect(sigma_l^2).collect(sigma_2^2).collect(sigma_2^4).collect(sigma_l^4).collect(sigma_a^4)
#
is seen like this(look please at the active cell of the image): 
http://img831.imageshack.us/i/image1lj.jpg/

P.S what is the name of your browser?


Can you publish that notebook on demo.sagenb.org or some other server so 
we can test it in our browsers?



Thanks,

Jason


--
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org


[sage-support] Re: jmol in OS X on Chrome

2011-02-26 Thread Benjamin Jones

  Hopefully good.  On the other hand, using a beta version of Chrome and a
  not-yet-fully-reviewed jmol spkg could possibly see hangups.  Nothing like
  living on the edge, though!  It would be useful if you could give some input
  into the review of the jmol ticket too (I see you already updated the
  instructions).

 I have been playing around with the new jmol spkg tonight on my system
 and have nothing but praise so far for how it works.

  -- William

I'm using Sage Version 4.6.1.alpha2 compiled from source under OS X
10.6.6. I just updated Chrome to 10.0.648.114 beta, and from Trac
#9238, I ran:

./sage -f 
http://www.uwosh.edu/faculty_staff/gutow/Jmol_for_SageNoteBook-1.1.4.spkg

Jmol in the notebook showed the new side panel, but still failed to
load in the plot window. I rebooted, started a new worksheet with a 3d
plot and Jmol now loads and works great.

The new interface is *really* nice.

--
Benjamin Jones

-- 
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org


[sage-support] Re: Jmol problem with Chrome on Mac

2011-02-26 Thread Benjamin Jones
If you update Chrome and the Jmol package in Sage it will work. See
this newer thread:

http://groups.google.com/group/sage-support/browse_thread/thread/47046e1c81d75d24

--
Benjamin Jones

On Jan 27, 2:29 am, pong wypon...@gmail.com wrote:
 I just wonder if any one has any success in getting Jmol to run 
 insideChromeon a Mac.
 If so, please share how :-)

 It's well known that Java is buggy withChrome(perhaps the new
 firefox 4 as well) on Mac. On sagenb.org, for example, when I invoke
 anything that calls Jmol, sage simply complains that Java applet is
 not enabled. Even though I have already allowed all sites to run
 Javascripts.

 I know two more things:

 1)Chrome(or Chromium rather) does not have this problem on Linux.
 2) It appears thatChrome(on Mac) can run Javascripts on some other
 sites, for example, I can play Java games with it.

 Any idea on how to fix this? Thanks in advance.

-- 
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org


[sage-support] Re: factoring polynomials

2011-02-26 Thread Volker Braun
You can factor it in any field that contains a square root of two. For 
example, we can construct a suitable number field over QQ:

sage: z = QQ['z'].0
sage: K = NumberField(z^2 - 2,'sqrt2'); K
Number Field in sqrt2 with defining polynomial z^2 - 2

In this number field, you can (somewhat tautologically) factor your 
polynomial:

sage: R.x = K[]
sage: (x^2-2).factor()
(x - sqrt2) * (x + sqrt2)


-- 
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org


[sage-support] Re: factoring polynomials

2011-02-26 Thread Volker Braun
Oops posted too quickly. The alternative is to use the symbolic ring, though 
strictly speaking that doesn't let you factor only find roots:

sage: var('x')
x
sage: (x^2-2).solve(x)
[x == -sqrt(2), x == sqrt(2)]

-- 
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org


Re: [sage-support] Link missing

2011-02-26 Thread Minh Nguyen
Hi Roland,

On Tue, Feb 15, 2011 at 2:19 PM, Rolandb rola...@planet.nl wrote:
 Hi, link missing

 Indices and tables

* Index
* Module Index
* Search Page

 Requested page /doc/numerical_sage/py-modindex.html  could not be
 found.

The above is expected because the links Index and Module Index are
only valid for the reference manual. But how to turn off these links
for the other documents is another problem.

-- 
Regards
Minh Van Nguyen

-- 
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org