Sage (or Sagemath) is a suite of open-source applications for mathematics
0
votes
0answers
14 views
Are there restrictions when doing R plots in Sage?
I have done some data analysis with Sage and R, and at this point I would like to produce a nice set of plots to condense the results so that I can present them properly.
What I've done is set the ...
0
votes
1answer
38 views
Modifying a set while iterating over it
I would like to iterate over a set while I'm deleting
items from it. There are similar questions for deleting
one item at the time or for lists, but they do
not work for my case.
The code follows; I ...
0
votes
0answers
60 views
(python)Sage for physicists [closed]
I am a physics undergrad and thinking of learning a CAS. Though, mathematica is a standard choice, I would prefer a free open source software, because of a fetish, and the fact that I can't use ...
7
votes
4answers
217 views
Why is creating a range from 0 to log(len(list), 2) so slow?
I don't have a clue why is this happening. I was messing with some lists, and I needed a for loop going from 0 to log(n, 2) where n was the length of a list. But the code was amazingly slow, so after ...
0
votes
1answer
32 views
Cython error: Undeclared name not built in:aray
I am compiling this Cython code in Sage Cell Server and I get the following error.
undeclared name not builtin: array
It displays the same error in Sage Notebook. I think it is not recognizing ...
1
vote
1answer
12 views
Sage wont allow me to add a title to a plot
I am going to put two sets of code in here the first one is the graph Im working on that has no problems. The second set of code is the same as the first except when I try to add a title to the graph ...
2
votes
1answer
40 views
Sage importing from csv and plotting numbers larger than 10
Okey, problem is simple:
I try to draw a simple scatter plot:
import csv
a = csv.reader(open(DATA+'testi1.csv'))
G = Graphics()
for col in a:
time = col[0]
conversion = col[2]
...
1
vote
1answer
15 views
Embed cells in Site + SAGE
I like use the SAGE to embed any code (example below). But I want linked two cells using this instruction but this not work. How I will be able to fix this?.
For example I trying call from "compute" ...
0
votes
1answer
17 views
SAGE + right_kernel() + basis matrix
I executed the right_kernel() instruction for any binary matrix H. Why always I get a basis matrix in this form [I|A] (Where I:identity matrix)?
1
vote
1answer
27 views
Solve Binary Linear System + SAGE
I have the equation Ax=b where all matrix entries and all entrie of vector b are in GF(2). How I will be able to solve this linear system equation over GF(2) in SAGE software?
1
vote
1answer
32 views
A combination of commands partial_fraction(x) and coefficient(x,n)
I am trying to do some iterative calculations where each time SAGE constructs a fraction and lists the coefficients in the partial fraction decomposition of that fraction. I realized that doing ...
0
votes
2answers
17 views
show several graphics in SAGE notebook
I want to show several plots in the notebook, one after the other. If I have only one plot, I can usually show it with the function sum(), but if I put something else after the sum() then the plot ...
0
votes
1answer
76 views
Using Sage Math library within Python
I am trying to make a visualization of a graph using Sage. I need to make the visualization exactly as I am writing the Python code.
I have downloaded and installed the Sage for Ubuntu and Sage ...
0
votes
2answers
33 views
How to express variable through other in SAGE
Is there way to express mathematical expression through variable defined earlier in SAGE?
For example if I have variable a = b + c, I want SAGE rewrite expression b + c + d as a + d.
Thank you.
1
vote
1answer
19 views
Sage: Catch MACSYMA-QUIT is Undefined
My Situation
When I'm using the sage.all module just on the normal python shell, sage.all throws an error on running methods like solve or assume:
>>> import sage.all as ...
0
votes
1answer
48 views
Getting user input in sage-python
Sage maths gives me an easy way of launching a multi-user python scripting site for my students with a gotcha. That is, I can't figure out how to get user input into scripts.
i.e. lines like
guess = ...
0
votes
1answer
71 views
Django error: settings.Databases improperly configured
I'm completely new to Django and have no idea what that means. I'm really just trying to get codenode setup for sage. I've tried following the installation guide at codenode's website, but when I load ...
1
vote
1answer
44 views
sage 5.0 syntax error with execfile()
the following is part of a .sage file I would like to be able to call in a session:
def projective_grid(m,n):
r"""
The mxn grid in projective space
"""
g = graphs.Grid2dGraph(m,n)
...
2
votes
1answer
121 views
Converting Sage symbolic Expression to string
I want to convert a Sage symoblic expression like:
y = 5*x + 7^x + 3*x^2
to a string which I can access by subscripting ( y[0] = '5', y[1] = '*', etc.
I need to do that because I want to calculate ...
1
vote
1answer
60 views
Assignment of Sage Matrix to variable in R
From sage (v5.4.1) in a terminal session i try to assign a value in R:
sage: r.assign('"M"',5)
[1] 5
That works. I could also do
sage: b=4
sage: r.assign('"M"',b)
[1] 4
But I would like to ...
0
votes
3answers
69 views
python: “mutable vectors are unhashable” error
I am using the maths package SAGE, which is written in Python.
I am trying to manipulate some sets of vectors and I keep on getting the above error message. I have absolutely no idea what it is ...
0
votes
2answers
92 views
pow(a,e,n) doesn't work for input pow(1,3,3)
why do I get this error message, when I'm using these parameters(pow(1,3,3)) ?:
sage: pow(1,3,3)
3
3/2
3/2
...
0
votes
2answers
37 views
adapt the method with a dynamic number of parameters
I'm using sage to print diffrent graphs with a script written in python. I'm trying to write a generic code that allows me to print all the graphs. For example I have :
g1 = graphs.BarbellGraph(9, 4) ...
1
vote
1answer
94 views
Volumetric slice plot of a parallelepiped volume data
I have a parallelepiped volume data defined by three vector:
a 2.468000 0.000000 0.000000
b -1.234000 2.137351 0.000000
c 0.000000 0.000000 32.000000
my grid is ...
0
votes
1answer
25 views
Previously working SAGE install broke
Sage was working for me about a month ago. I had not used it until yesterday, and when I tried using the sage command in my Ubuntu 12.04 terminal I receive the following error
/usr/bin/sage: line ...
0
votes
1answer
38 views
Force class reloading when the module is reloaded
In my client code I have:
import sys
import os
YAP_PATH = "/package/src/python"
if YAP_PATH not in sys.path:
sys.path.append(YAP_PATH)
if 'yap' in sys.modules:
reload(yap)
import yap
...
0
votes
1answer
101 views
Python, generate prime twins
I tried to write a python program to generate the prime twins in sage.
However I can't quite seem to get it to work.
Code:
http://pastebin.com/PRnvJsf3
Sage is giving me the following error ...
1
vote
2answers
72 views
Generate output without losing leading zeroes
I am using sage maths (which uses Python(more or less)) to do some work involving cryptography. This involves using binary keys which you xor to generate a cipher or message.
Often, the input data is ...
0
votes
2answers
73 views
Euclidean algorithm on Sage for more than 2 elements
I'm trying to make an exercise which gets a list of numers, an shows a list of elements like this: if A=[a0,a1,a2] then there is U=[u0,u1,u2], knowing that a0*u0 + a1*u1 + a2*u2 = d and d is the gcd ...
2
votes
1answer
60 views
sage 5.0 confusing syntax error
My OS doesn't support Sage 5.4 so I'm stuck with 5.0 for now.
Defining this function registers no syntax errors in python, and I don't think it makes errors in Sage 5.4 (I'd appreciate confirmation if ...
0
votes
1answer
87 views
Change R default path (.libPaths) in sage
I want to use the same directory for my addon R-packages that I use in standalone R. The following works from within sage:
r(".libPaths('/home/USERNAME/R/my-libraries')")
But when I include this ...
1
vote
1answer
108 views
Importing common files to Sage
I'd like to import some utility files in a separate directory to my project, e.g. so that I can do import util from the Sage prompt. Adding that directory to the SAGE_PATH variable allows me to do ...
1
vote
1answer
82 views
Iterations in python consume whole memory - faulty code?
I have written some very simple trial-and-error code in Sage (a computer algebra system written in python where you can use regular python syntax in scripting). The little code snippet creates a ...
3
votes
3answers
271 views
Python sage: How do I computer a nullspace (kernel) for a stoichiometric matrix?
In a desperate attempt to switch from Matlab to python, I am encountering the following problem:
In Matlab, I am able to define a matrix like:
N = [1 0 0 0 -1 -1 -1 0 0 0;% A
0 1 0 0 ...
1
vote
1answer
65 views
Error on running Sage
I am trying to use Sage but when I type ./sage I get a lot of errors like these, with strange characters:
----------------------------------------------------------------------
| Sage Version 4.8, ...
0
votes
1answer
67 views
counter modified during recursion in python
To extract all (possibly non contiguous) sublists of length r from a list li, I wrote the function
def sublist(li, r):
output = list()
if r == 1:
return [ [element] for element in li ...
0
votes
1answer
59 views
the graph in sage
I want define new graph in sage. Let G be finite group. The graph's vertices are subgroup and two vertices are adjacent if and only if sum of two subgroup is G.
I have trouble with define this graph ...
0
votes
0answers
96 views
Deviation variables in Sage
In process control theory, it is common to make use of "deviation variables" when solving differential equations via the Laplace transform. Essentially, we take an equation in x(t) and substitute x(t) ...
-1
votes
1answer
70 views
Is it possible to use Sage to compute results from data
I have set of data point (x_i,y_i) from a text file. How can I write a C-program that reads those data and computes their Pearson correlation using Sage? I have no idea how can I use C to give input ...
0
votes
1answer
55 views
Plotting in sage
my questions involves the following: I have the basic task of visualizing the steps in a sorting algorithm by plotting the vector as a bar graph. That's no problem and I already have my solution. The ...
0
votes
1answer
82 views
ZZ function in sage programming
So I have decided to learn Sage programming since it can handle very large numbers which is useful for RSA encrypting/decrypting.
(1) I was following an example but I am not quite sure how they got ...
0
votes
1answer
354 views
Installing the Enthought Python Distribution with existing python distro
I am currently trying to install the Enthought Python Distribution (EPD), and have existing python distros. I currently have ipython, numpy and a lot of other tools, plus Sage (an open-source Python ...
0
votes
2answers
423 views
How to add titles, axis label, and legend in sagemath?
I'm currently making some graphs using the online workbook hosted by sagemath.
This is an example of some code I'm making to try and generate a graph:
myplot = list_plot(zip(range(20), range(20)), ...
0
votes
2answers
94 views
Getting rid of spikes in sample data
How could I get rid of sparky data in a descrete data set, but in a "smoother out" manner?
Take for instance
There are two sparks, at 20000, but the next one at 600 is also considered a spark.
...
0
votes
1answer
329 views
Adding up values in a specific column in a CSV file (in Sage Notebook)
I have a csv file that contains a large number of values in 4 different columns. Using python, is there a way to add up the values in one particular column (say the values in column 1). I want to find ...
0
votes
1answer
133 views
Python/Creating a graph in Sage Notebook
import csv
a = csv.reader(open(DATA+'DataA.csv'))
for row in a:
time = row[1]
conversion = row[3]
x_series = time
y_series = conversion
scatter_plot(zip(x_series,y_series))
I am ...
1
vote
0answers
125 views
Solving a system of coupled iterative equations containing lots of heavy integrals and derivatives
I am trying to solve a system of coupled iterative equations, each of which containing lots of integrations and derivatives.
First I used maxima (embedded in Sage) to solve it analytically, but the ...
0
votes
1answer
95 views
sagemath: Convert Fractions in Dictionaries in a list to Decimals for matplotlib
eng3 = [solve(eng==(k-1)*md*Vm^2/(2*Patm*Vc*(Pc-Pc^(1/k))),Vc,solution_dict=1) for Pc in xrange(2,10)]
I'm trying to automate the process of some efficiency graphs in sage mathematics, and I've got ...
0
votes
1answer
99 views
Create Graph in Sage
I want define new graph in sage. Let V be vector space over finite field GF(q). The graph's vertices are i-dimensional subspace from V and n-i -dimensional subspace from V and two vertices are ...
0
votes
1answer
109 views
Extracting data from a field in Sage 50 into an application
this isn't so much a question but more so a "Could someone please point me in the right direction"
I have been given a task at work to bring across some data in a field from a product in Sage 50 into ...

