Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
1answer
381 views

Simplify Regular Expression in Mathematica

I recently found out about Kleene algebra for manipulating and simplifying regular expressions. I'm wondering if this has been build into any computational software programs like Mathematica? It ...
10
votes
9answers
2k views

Abstract algebra and Programming

I am going to start learning Abstract Algebra- Groups, Rings,etc. I am interested to know any programming language, if at all which can help me learn/try the concepts I learn in theory. EDIT: I am ...
8
votes
3answers
324 views

C# library for algebra simplification and solving

There are quite a few algebra solvers and simplifiers on the web (for example, the decent one at algebra.com). However, I'm looking for something I can plug into C# as part of a larger project (I'm ...
8
votes
2answers
153 views

Can I write a function that carries out symbolic calculations in Python 2.7?

I'm currently transitioning from Java to Python and have taken on the task of trying to create a calculator that can carry out symbolic operations on infix-notated mathematical expressions (without ...
8
votes
3answers
377 views

Quaternions vs. Euler Angles

Hi What is the pros and cons of "Quaternions" and "Euler Angles" Method - Which one is faster? - Which one need less Computational Effort? - which one is more accurate, (in round off error)?
8
votes
2answers
1k views

Java/Scala library for algebra, mathematics

Can you advice me some flexible and powerful, yet fast library which could cover Scipy (both in performance and functionality). I found Scipy very expressive - but I want to try something in Scala. ...
8
votes
5answers
360 views

Wanting to write a raytracer, stuck on what algebra library to use (C++)

I've been wanting to write my own multithreaded realtime raytracer in C++, but I don't want to implement all the vector and matrix logic that comes with it. I figured I'd do some research to find a ...
8
votes
4answers
330 views

How can I implement this more efficiently

So I have a function (I'm writing this in a pseudo-functional language, I hope its clear): dampen (lr : Num, x : Num) = x + lr*(1-x) And I wish to apply this n times to a value x. I could ...
7
votes
6answers
702 views

Need a way to parse algebraic expressions in C

I need to parse algebraic expressions for an application I'm working on and am hoping to garnish a bit of collective wisdom before taking a crack at it and, possibly, heading down the wrong road. ...
7
votes
5answers
272 views

Can I calculate an element without looping through all preceeding elements in my case (see the question body)?

I have 2 arrays of Doubles of the same length. Array a is filled with some data, array b is to be calculated. Each element of the array b equals a corresponding value from array a plus a weighted sum ...
7
votes
10answers
576 views

Is there any Mathematical Model or Theory behind Programming Languages?

RDBMS are based on Relational Algebra as well as Codd's Model. Do we have something similar to that for Programming languages or OOP?
7
votes
7answers
964 views

Books & resources to teach myself Linear Algebra [closed]

The title says it all basically, I'm looking for books and resource to teach myself linear algebra to be used in 3D graphics programming. I prefer practical approaches to teaching over theoretical ...
6
votes
2answers
316 views

Solving an overdetermined constraint system

I have n real number variables (don't know, don't really care), let's call them X[n]. I also have m >> n relationships between them let's call them R[m], of the form: X[i] = alpha*X[j], alpha ...
6
votes
2answers
325 views

Message parity check

Can someone help me out implementing this sequence of calculations in c# ?
6
votes
3answers
200 views

determining numerator and denominator in a relatively complex mathematical expression using python

I'm trying to convert calculator input to LaTeX. if a user inputs this: (3x^(x+(5/x)+(x/33))+y)/(32 + 5) I have to convert it to this: frac{3x^(x+frac{5}{x}+frac{x}{33})+y}{32 + 5x} however I am ...
6
votes
2answers
768 views

Algebra equation parser for java

I need a library to be able to parse an equation an give me the result giving the inputs. For example something like this: String equation = "x + y + z"; Map<String, Integer> vars = new ...
6
votes
1answer
250 views

What is a “multisorted algebra”, and how do I use it to solve “real problems”?

Apparently, Alexander Stepanov has stated the following in an interview: “I find OOP technically unsound. It attempts to decompose the world in terms of interfaces that vary on a single type. To deal ...
6
votes
6answers
645 views

Greatest GCD between some numbers

We've got some nonnegative numbers. We want to find the pair with maximum gcd. actually this maximum is more important than the pair! For example if we have: 2 4 5 15 gcd(2,4)=2 gcd(2,5)=1 ...
6
votes
6answers
107 views

How can one check for “safe” conversions between value types in .NET?

Back to the basics... For reference types, one can do this: SomeType someObject = firstObject as SomeType; if (someObject == null) { // Handle the situation ...
6
votes
2answers
839 views

Relational algebra - what is the proper way to represent a 'having' clause?

Yes, this is a homework question but the names have been changed to protect the innocent. Meaning, I am not asking the homework question itself, but rather a small part of it so I can understand the ...
6
votes
11answers
3k views

Mathematically Find Max Value without Conditional Comparison

----------Updated ------------ codymanix and moonshadow have been a big help thus far. I was able to solve my problem using the equations and instead of using right shift I divided by 29. Because ...
6
votes
4answers
1k views

How could I implement logical implication with bitwise or other efficient code in C?

I want to implement a logical operation that works as efficient as possible. I need this truth table: p q p → q T T T T F F F T T F F T This, according to ...
6
votes
10answers
628 views

Where is a good place to brush up on some math?

Math skills are becoming more and more essential, and I wonder where is a good place to brush up on some basics before moving on to some more CompSci specific stuff? A site with lots of video's as ...
5
votes
3answers
259 views

Can program be used to simplify algebraic expressions?

We know 1+2+...+n is equal to n(n+1)/2. But can we get the same result programatically if we don't know it in advance? About why I have such a question. Think of a more complex situation: ...
5
votes
4answers
203 views

Finding the single unknown in an equation

I need a library to be able to parse an equation an give me the result giving the inputs. For example something like this: String equation = "5 = 6 / z"; EquationSolver solver = new ...
5
votes
4answers
195 views

Fermat's little theorem in JS

I just tried to implement Fermat's little theorem in JavaScript. I tried it both ways, a^(p-1) mod p = 1 and a^p mod p = a mod p. function fermat(a, p) { return (((a ^ (p - 1)) % p) === 1); } and ...
5
votes
2answers
896 views

How to set up quadratic equation for a ray/sphere intersection?

I'm researching the math for a ray tracer, but I'm not following a transition that is made in just about every article I've read on the subject. This is what I have: Formula for a sphere: (X - Cx)^2 ...
5
votes
1answer
510 views

Generated methods for polynomial evaluation

I'm trying to come up with an elegant way to handle some generated polynomials. Here's the situation we'll focus on (exclusively) for this question: order is a parameter in generating an nth order ...
5
votes
3answers
543 views

Is there C++ class that implements operations with permutations?

Is there C++ template class that implements operations with permutations and permutation group? Such class has to implement finding product and inverse, multiplication, etc.
4
votes
3answers
387 views

Algorithm(s) for rearranging simple symbolic algebraic expressions

I would like to know if there is a straightforward algorithm for rearranging simple symbolic algebraic expressions. Ideally I would like to be able to rewrite any such expression with one variable ...
4
votes
1answer
188 views

Find a root of a polynomial modulo 2^r [closed]

I have a polynomial P and I would like to find y such that P(y) = 0 modulo 2^r. I have tried something along the lines of Hensel lifting, but I don't know if this could even work, because of the ...
4
votes
2answers
566 views

How can I remove a column from a sparse matrix efficiently?

The title pretty much says it all: If I am using the sparse.lil_matrix format, how can I remove a column from the matrix easily and efficiently? Thanks!
4
votes
4answers
552 views

How could one implement multiplication in finite fields?

If F := GF(p^n) is the finite field with p^n elements, where p is a prime number and n a natural number, is there any efficient algorithm to work out the product of two elements in F? Here are my ...
4
votes
10answers
5k views

Equation Solvers for C++

I need to solve a few mathematical equations in my application. Here's a typical example of such an equation: a + b * c - d / e = a Additional rules: b % 10 = 0 b >= 0 b <= 100 Each number ...
3
votes
2answers
570 views

Scientific Programming with Ruby

I was doing the mathematical calculations with python or octave because of availability of really nice functions and libraries at hand. But recently I gained interest in ruby and I wonder if there is ...
3
votes
3answers
220 views

Library for finding any solution of any number of linear equations with any number of variables

I have to finding any solution (there may exist many or none) of any number of given liner equations with any number of variables. In Java. What libraries and method use? What to implement? I want to ...
3
votes
1answer
134 views

Python Search Algebra Function

I am trying to make a search function to work with algebra problems. I want something like Wolfram Alpha but I am building a python framework for it. It should be able to figure out multiple variables ...
3
votes
1answer
323 views

Distance from a point to a polyhedron or to a polygon

I have a surface which is a polyhedron and I want to find the minimal distance between it and a given point P. Since the polyhedron is defined by many polygons in a 3d space, one way that occurs to me ...
3
votes
3answers
1k views

Statistics and matrix algebra in Ruby

I need to inverse a variance-covariance matrix in Ruby and vector by matrix multiplication. Which numerical Ruby library/Gem should I use?
3
votes
4answers
1k views

How can I simplify a basic arithmetic expression?

How can I simplify a basic arithmetic expression? e.g. module ExprOps where simplify :: Expr -> Expr simplify (Plus(Var"x") (Const 0)) = Var "x" What do I have to do? module Expr where -- ...
3
votes
4answers
488 views

boolean operations with integers [closed]

This is probably pretty basic... but I don't seem to get it: How does (2 & 1) = 0 (3 & 1) = 1 (4 & 1) = 0 etc.. This pattern above seems to help find even numbers or (0 | 1) = 1 ...
2
votes
1answer
57 views

How to determinate round by element in tree (Tournament brackets)?

Assume we have following tree: 1 9 2 13 3 10 4 15 5 11 6 14 7 12 8 Where elements(matches): 1-8 is round 1 9-12 is round 2 13-14 is round 3 15 is ...
2
votes
2answers
118 views

sparse matrix overdetermined linear equation system c/c++ library

I need a library to solve Ax=b systems, where A is a non-symmetric sparse matrix, with 8 entry per row (and it might be quite big). I think a library that implements biconjugate gradient should be ...
2
votes
1answer
129 views

Javascript: Detect colliding divs

How do I detect if two divs are overlapping? Not taking into consideration the width of a div, it is basically a vertical line segment. The (top,left) point is point A while the bottom (top + height) ...
2
votes
1answer
60 views

Proving language properties

I am taking a course on the formal foundations of programming, one of things we have covered is proving certain properties of languages, i have done most of the work, but I am stuck on these two ...
2
votes
2answers
215 views

Semigroup/Monoid/Group type class hierarchy in Haskell errors

I am learning Haskell, and I'm trying to create a "hierarchy" of algebraic type classes, as follows: class Semigroup a where (.*) :: a -> a -> a foldr1 (.*) = foldl1 ...
2
votes
3answers
299 views

Can someone please help me with some basic boolean minimization?

Sorry to be annoying, but I am doing a little bit of work at the moment, and am trying to simplify the following piece of boolean algebra so that I can construct the circuit : A'.B'.C.D + A'.B.C.D' ...
2
votes
2answers
127 views

How to see scaling matrices from a geometric perspective

I'm using XNA but it doesn't matter too much for this example. So let's say I have a sprite. I then apply a scaling matrix before anything. Is the scaling matrix applied scaling the local axis of the ...
2
votes
7answers
755 views

Mixing colors(adding and subtracting colors) like in Art Class!

I'm building a color class and I'm looking to add operations more(color, percentage) & less(color, percentage). This requires being able to add and subtract colors and I'm having a hard time with ...
2
votes
5answers
226 views

Mathematical problem

I have the following function: function getLevel(points) { var level = -1 + Math.sqrt(4 + points/20); // Round down to nearest level return Math.floor(level); } The above function calculates ...

1 2 3