3
votes
3answers
41 views

Given f, is there an automatic way to calculate fprime for Newton's method?

The following was ported from the pseudo-code from the Wikipedia article on Newton's method: #! /usr/bin/env python3 # https://en.wikipedia.org/wiki/Newton's_method import sys x0 = 1 f = lambda x: x ...
1
vote
2answers
60 views

Looking for values in Python Dictionaries

I'm trying to memoize divisor sums of numbers. divisorSums = {} def sumDivisors(num): global divisorSums total = 0 if num == 1: return 0 for i in xrange(num/2, 0, -1): ...
0
votes
4answers
63 views

Euclidean algorithm (GCD) with multiple numbers?

So I'm writing a program in Python to get the GCD of any amount of numbers. def GCD(numbers): if numbers[-1] == 0: return numbers[0] # i'm stuck here, this is wrong for i in ...
0
votes
1answer
23 views

Locational triangulation

I have data about 10 point in a 2D map, I know the location of points 1,2 and 3. I also know the distance between point 1,2 and 3 to all other points. I know that cell phone uses distance from gsm ...
-2
votes
0answers
39 views

Python draw circles and find intersecting points [closed]

I have a geometrical problem needs to be solved. I need draw circles at python and find the intersection points of two circles in terms of x,y. DETAILS; I have a problem, similar to gsm triangulation ...
0
votes
1answer
24 views

Python ndarray division

I have this piece of code from scipy import misc from numpy import fft orig = misc.imread('lena256.png') blur = misc.imread('lena256blur.png') orig_f = fft.rfft2(orig) blur_f = fft.rfft2(blur) ...
3
votes
6answers
93 views

How to change value in list using basic operations?

Ok, I made myself the challenge so I can do some programming. However I faced some problems. adtprice = {19.99 , 49.99} chldprice = adtprice * (3/4) - 7.5 And this is Error I got as the result. ...
0
votes
0answers
60 views

Solving coupled equations in python

I want to know how to solve coupled equations in python using scipy or any other module. The equations are as follows (sorry for the ugly notation). gam^2 = a_0*f(gam), where a_0 is known const. ...
1
vote
2answers
41 views

Setting Assumptions on Variables in Sympy Relative to Other Variables

I know that sympy in python can set assumptions on variables, such as x is positive, negative, real, complex, etc. I was wondering if sympy can set assumptions on variables relative to other ...
-2
votes
0answers
52 views

Using PYTHON to setup BVP [closed]

How to use python to solve the two-point Boundary value Problem ? y"=10*y^3+3*y+t^2, with 0<=t<=1 with boundary conditions y(0)=0, y(1)=1 ...
0
votes
0answers
42 views

Rotating entire X,Y axis in 2D space via matplotlib

I have problem using matplotlib in Python. Problem is that I must make rotation in 2D of X and Y axis by 30°,45°,60° and 120° and the opposite. In this code below can someone please give me some tips ...
1
vote
0answers
34 views

Unmatched intersected line coordinates in 2D array coordinate

In the link here I described about this problem as a primary description. That will help me to explain the description of below mentioned problem. Here, I have 2D array with some values , let's say, ...
-1
votes
1answer
68 views

How do I integrate a multivariable function? [closed]

I have a function f(x_1, x_2, ..., x_n) where n >= 1 that I would like to integrate. What algorithm should I use to provide a decently stable / accurate solution? I would like to program it in ...
0
votes
1answer
58 views

Tkinter Calculator Bug

I am making a simple Python Tk calculator, but there is a bug: the calculator won't work unless I push one of the buttons before then numbers are put in when I do this it diplays an error that says ...
0
votes
1answer
23 views

Putting 2D coordinate system to 3D via matplotlib

I am pretty new to programing in python and I have a question. So I want to draw 2D coordinate space in 3D so I could add points in space and show rotations around (0,0) for (2,1) of 2D space by ...
2
votes
3answers
106 views

How can I calculate the area of an object by using its contour (chain code)?

Say I have a rotated squared object with chain code [1, 1, 1, 1, 3, 3, 3, 3, 5, 5, 5, 5, 7, 7, 7] using 8-connectedness. How can I derive its area, as in number of pixels? EDIT: I derived the chain ...
0
votes
5answers
79 views

Solving Quadratic Formula

I'm writing a program to solve quadratic equations using the quadratic formula but it only works when a = 1 but i want it to work when a is more than 1 Here is my code: import math def solve(a, b, ...
1
vote
3answers
78 views

Sample integers from truncated geometric distribution

What is a good way to sample integers in the range {0,...,n-1} according to (a discrete version of) the exponential distribution? random.expovariate(lambd) returns a real number from 0 to positive ...
5
votes
3answers
97 views

Speed up random matrix computation

I am creating random Toeplitz matrices to estimate the probability that they are invertible. My current code is import random from scipy.linalg import toeplitz import numpy as np for n in ...
4
votes
2answers
59 views

Why am I receiving a “no ordering relation defined for complex numbers” error?

See this question for some background. My main problem on that question was solved, and it was suggested that I ask another one for a second problem I'm having: print cubic(1, 2, 3, 4) # Correct ...
3
votes
2answers
49 views

Python : efficient bytearray incrementation

How to iterate all possible values of bytearray of length = n in Python ? in worst case n <= 40bytes For example, iterate for n = 4 : 00000000 00000000 00000000 00000000 00000000 00000000 ...
3
votes
3answers
183 views

What's wrong with this Python function to solve cubic equations?

I am using Python 2 and the fairly simple method given in Wikipedia's article "Cubic function". This could also be a problem with the cube root function I have to define in order to create the ...
0
votes
0answers
79 views

Hard formula (double sum) with n-list in Python

I realy lost with one formula. At that moment, i'd like to make a python module (for personal use), that will help me with some math in stock an portfolio investitions. It was easy to make variance ...
0
votes
1answer
41 views

Python - equally distribute objects across a bezier curve

I've read everything I could find here on the subject, and yet I don't manage to translate a part of the code to simple python I'd understand. I got this, based on this very good explanation of de ...
1
vote
0answers
53 views

Algorithm to schedule tasks in up to 'p' processors who each have fixed task queue lengths

How to write the logic to schedule tasks where I need to: Schedule len(task_fifo) tasks on a processor group pg, pg has up to p processors 1 <= num_of_processors <= p processors. To reserve ...
4
votes
2answers
149 views

Test if matrix is invertible over finite field

I would like to test if a particular type of random matrix is invertible over a finite field, in particular F_2. I can test if a matrix is invertible over the reals using the following simple code. ...
5
votes
4answers
236 views

How to exactly solve quadratic equations with large integer coefficients (over integers)?

I read a problem about bullseyes in Google Code Jam. (The contest is over now, so it's okay to talk about it) Maria starts with t millilitres of black paint, which she will use to draw rings ...
0
votes
1answer
56 views

How to align a face to a position in world space?

I have a mathematical problem. Let's say I have a face (with 3 or 4 vertices) at some world position. I want to translate/rotate the mesh so that the face is "facing" up and is centered (0,y,0). What ...
2
votes
1answer
43 views

Avoid sorting args in Python module Sympy

I am currently developing a differential operator for sympy that can be placed in matricial form. In this case the order of the args list when creating a Mul object is very important to guarantee that ...
4
votes
3answers
95 views

Get smallest N values from numpy array ignoring inf and nan

I need a good, quick method for finding the 10 smallest real values from a numpy array that could have arbitrarily many nan and/or inf values. I need to identify the indices of these smallest real ...
0
votes
0answers
57 views

system of nonlinear ODE equations with vector coefficients using Python to solve

I need to solve the next system for y: y''(x) + k(x)y'(x)(y(x)**3/4)+(y'(x)**1/4)=0 which goes like that: i=1: y''(1) + k(1)y'(1)(y(1)**3/4)+(y'(1)**1/4)=0 i=2: y''(2) + ...
1
vote
1answer
42 views

Python Primes Array Confusion

I have a small question about this python prime checking function. This is really dumb, but what does the [2] in the in the for n in [2] do? I understand the formula to check for primes, no problem, ...
4
votes
3answers
129 views

pyEphem - Calculating Positions of non-Earthy Moons

I'm trying to get the Earth distance and the right ascension (relative to my observer point in Earth) of a satellite not orbiting the Earth, but pyEphem isn't returning the same properties as other ...
0
votes
1answer
78 views

Forward substitution of lower triangular matrix. How?

Not sure if this is the right place to ask but here goes. Does anyone know how the following code is able to solve for x Lx=y where L and y are a given matrix and a vector, respectively? If you ...
0
votes
1answer
75 views

Trying to read a two's complement 16bit into a signed decimal

Im trying (in PHP) to read the two's complement value of two bytes (16 bits) and return a signed decimal. I am not sure how the two's compliment math should work, but from php.net, I managed to get ...
4
votes
2answers
155 views

Big-O notation for two simple recursive functions

I have two recursive functions in Python and simply just want to know the Big O Notation for them. What is the Big O for each these? def cost(n): if n == 0: return 1 else: ...
3
votes
2answers
104 views

Mathematical expression as argument to function?

I'm very much a beginner, so please be gentle. I am tinkering with some Python exercises, and I have code looking like this. def newton(x0, Tol): def F(x): return (x**3)+898 def ...
3
votes
2answers
61 views

Factoring Trinomials With Python

Im creating a program to factor trinomials but im getting a bit confused and mixed up and i cant quite figure out how to correctly print the output example trinomial 2x**2+6x+4 = (1x+2)(2x+2) so ...
2
votes
1answer
88 views

Sympy Solve( ) Gives Incorrect Answer

I'm using sympy to work through some mathematical models, and I found that for some reason sympy.solve( ) gives me the wrong answers. import sympy as sm p, WAA, WAa, Waa = sm.symbols( 'p, WAA, WAa, ...
1
vote
3answers
2k views

Finding the square root using Newton's method (errors!)

I'm working to finish a math problem that approximates the square root of a number using Newton's guess and check method in Python. The user is supposed to enter a number, an initial guess for the ...
0
votes
2answers
1k views

Python math is wrong [duplicate]

Possible Duplicate: Python rounding error with float numbers Python 2.7.3 (v2.7.3:70274d53c1dd, Apr 9 2012, 20:52:43) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin Type ...
5
votes
6answers
1k views

finding the derivative of a polynomial

I wondering symbolically how you would parse a polynomial into a function and return the derivative. What data structure would I use or method to parse the polynomial? Preferably without using any ...
4
votes
5answers
521 views

Comparing Root-finding (of a function) algorithms in Python

I would like to compare different methods of finding roots of functions in python (like Newton's methods or other simple calc based methods). I don't think I will have too much trouble writing the ...
1
vote
2answers
3k views

Vector normalization

The formula for half vector is (Hv) = (Lv + Vv) / |Lv+Vv|, where Lv is light vector, and Vv is view vector. Am I doing this right in Python code? Vvx = 0-xi # view vector (calculating it from ...
113
votes
19answers
20k views

Fastest way to list all primes below N in python

This is the best algorithm I could come up with after struggling with a couple of Project Euler's questions. def get_primes(n): numbers = set(range(n, 1, -1)) primes = [] while numbers: ...
38
votes
13answers
14k views

Base 62 conversion in Python

How would you convert an integer to base 62 (like hexadecimal, but with these digits: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'). I have been trying to find a good Python ...
86
votes
10answers
45k views

How to check for NaN in python?

float('nan') results in a thingy simply called nan. But how do I check for it? Should be very easy, but i cannot find it.
29
votes
4answers
14k views

Convert a number range to another range, maintaining ratio

I'm trying to convert one range of numbers to another, maintaining ratio. Maths is not my strong point. I have an image file where point values may range from -16000.00 to 16000.00 though the typical ...
30
votes
14answers
19k views

How can you determine a point is between two other points on a line segment?

Let's say you have a two dimensional plane with 2 points (called a and b) on it represented by an x integer and a y integer for each point. How can you determine if another point c is on the line ...
30
votes
8answers
13k views

In Python, what is the difference between '/' and '//' when used for division?

Is there a benefit to using one over the other? They both seem to return the same results. >>> 6/3 2 >>> 6//3 2

1 2 3 4 5 15