Tagged Questions

0
votes
2answers
62 views

Solving second degree simultaneous equation

What would be the solution to the following two equations ? A1uv + B1u + C1v + D1 = 0 A2uv + B2u + C2v + D2 = 0 u, v in [0, 1] The solution needs to be blazing fast because it needs to be solved …
5
votes
10answers
173 views

Function approximation

I have a function, P(x0, x1, ..., xn) that takes 100 integers as input and gives as output an integer. P is a slow function to evaluate(it can range from 30 seconds to a couple of minutes). I need …
0
votes
1answer
46 views

Anyone working on the book “Concrete Mathematics” ? [closed]

I have some doubts(stuck on it) but can hardly find anyone who is/has reading/read the book and understood it. I have problem in chap 1. page no 13.
0
votes
2answers
71 views

How do I use the least squares approximation in MATLAB?

For a homework assignment in linear algebra, I have solved the following equation using MATLAB's \ operator (which is the recommended way of doing it): A = [0.2 0.25; 0.4 0.5; 0.4 0.25]; y = [0.9 …
1
vote
1answer
34 views

Intersection Of A Surface An Plane

I'm trying to find out when a quadratic selection algorithm is faster than a linear selection algorithm. Running some experiments I generated two 3D plots that show the algorithm run times as a …
0
votes
3answers
80 views

2D Mathematics Geographical Directions

Hi All, I am trying to check the location of a point(px, py) on 2D graph in relation to a line segment (lx1, ly1) (lx2, ly2), using logic of North South East West directions. The logic I have …
1
vote
6answers
101 views

Perpendicular on a line from a given point

Hi All, How can I draw a perpendicular on a line segment from a given point? My line segment is defined as (x1, y1), (x2, y2), If I draw a perpendicular from a point (x3,y3) and it meets to line on …
3
votes
3answers
89 views

Calculate direction vector

HI All, How can I calculate direction vector of a line segment, defined by start point (x1, y1) and end point (x2, y2)? Cheers.
-2
votes
6answers
228 views

How can be 2 = 1.99999…? [closed]

While dealing with some problem I came across with the following situation. Assume x = 1.99999... -> LHS x = 1.99999... - (1) 10x = 19.99999... - (2) Now subtract (1) from (2); Equation …
0
votes
3answers
113 views

numerical differentiation and integration in Java

Hi This is a bit of a longshot. Suppose I am sampling signal at a fixed rate (say once per second). Is there mathematical Java Library I can use to calculate/extract the following metrics from the …
-2
votes
2answers
172 views

Mathematics 2D Line Equation [closed]

Hi All, In 2D plane, I have 2 line segments line1 (x1, y1) (x2, y2), and line2 (a1 b1) (a2 b2). Is it possible to find out the relation between these two lines and then use that relation to draw a …
2
votes
8answers
137 views

Mathematical notation of programming concepts

There are many methods for representing structure of a program (like UML class diagrams etc.). I am interested if there is a convention which describes programs in a strict, mathematical way. I am …
2
votes
4answers
140 views

Convergence of Mathematics and Programming Languages

It seems that there is a strong movement for the convergence of mathematics and computer programming languages, this is notably evidenced by the influence of the lambda calculus on modern languages. …
1
vote
1answer
53 views

“simple math syntax” to MathML converter

I'd like something that converts a simple calculator like ascii math syntax to mathML. I found this: http://www1.chapman.edu/~jipsen/mathml/asciimath.html But I don't understand how to use it.. I'd …
8
votes
4answers
343 views

How would one implement an FPS camera?

So I'm currently working on some FPS game programming in OpenGL (JOGL, more specifically) just for fun and I wanted to know what would be the recommended way to create an FPS-like camera? At the …

1 2 next
15 30 50 per page