The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
32 views

Working out the distance between 2 points in one plane only

How can I find the distance between the two points as shown in the above picture. I know I can use Pythagoras to find the 'actual' distance between the two points, but I want to find the X distance ...
0
votes
2answers
75 views

Pythagorean triplets whose sum is 1000?

Project Euler problem 9. I tried to solve it, infact I get triplets which are not Pythagorean triplets and their sum is 1000, Why? I made sure they were Pythagorean triplets. Here is my long and not ...
1
vote
2answers
317 views

Calculate distance in (x,y) between two GPS-Points

I'm looking for a smoothie way to calculate the distance between two GPS-Points, so I get the result like: "You have to go x-meters up and y-meters to the left - so I can work with a 2d-coordinate ...
1
vote
2answers
96 views

Accelerate framework ios: Fastest pythagoren calculation

So I have 2 matrices: each is 100x100. I am looking to calculate a 3rd matrix such that: M3[i]=sqrt(M1[i]^2 + M2[i]^2). I can obviously do ForLoops but I am sure there is something faster. I ...
0
votes
1answer
104 views

Finding all possible pythagorean triangles within a set of triangles

REVISION 1 I've looked at this thread: All possible Pythagorean Triples Looks similar to mine but I can't get mine to work for some reason.. Here's my code: #include <iostream> #include ...
-3
votes
1answer
177 views

Why isn't this Python pythagorean theorem solver working? [closed]

print "Welcome to Dylan's Pythagorean Theorem Solver." from math import sqrt print "What are we solving for? A hypotenuse or a leg?" ask = raw_input("# ") if ask == "hypotenuse": print "What ...
1
vote
1answer
73 views

Parametrization of primitive Pythagorean triples

I have already wrote an algorithm to find integer Pythagorean triples, but unfortunately the algorithm runs at O(n^3). Does anyone know how to use parametrization to find Pythagorean triples? If so, ...
0
votes
1answer
168 views

algorithm for finding primitive pythagorean triples

here is my code: // PPT.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <stdio.h> #include <stdlib.h> #define LOWER_BOUND 1 #define ...
0
votes
0answers
133 views

Which one is better haversine or pythagorean?

I have mysql query to calculate distance between given longitudes and latitude within 50 meter radius. Here I want to know that by performance, speed and distance accuracy wise which one is better, ...
0
votes
0answers
111 views

Evenly distribute n points between two fixed points

I have two fixed points, (x1,y1) and (x2,y2). I am trying to distribute n points between them, so that the distance between every point is equal. This is easy when they are in a straight line, but I ...
1
vote
1answer
288 views

Prolog: pythagorean triple

I have this code that uses an upper bound variable N that is supposed to terminate for X and Y of the pythagorean triple. However it only freezes when it reaches the upper bound. Wasn't sure how to ...
0
votes
5answers
103 views

function return: PHP

I'm not sure what I'm missing, but I can't get $c to output correctly. <?php function pythThm($a, $b){ $a2 = pow($a, 2); $b2 = pow($b, 2); $c = sqrt($a2 + $b2); ...
1
vote
1answer
214 views

PHP Math Pythagoras

Okay, I've coded this pythagoras-solver kind of thing, and I was wondering any ways I could improve it, or make it more efficient? <?php $sides = array('1' => 'Hypotenuse', '2' ...
3
votes
5answers
558 views

Shortest path between raw geo coordinates and a node of a graph

I have implemented a simple Dijkstra's algorithm for finding the shortest path on an .osm map with Java. The pathfinding in a graph which is created from an .osm file works pretty well. But in case ...
3
votes
5answers
734 views

Optimum algorithm to calculate pythagorean triplet

I have a question for everyone. I have this problem statement where in given, x^2 + y^2 = c is the equation, you have to optimally find the tuples (x,y) such that the equation holds true. Given a ...
0
votes
1answer
477 views

iPhone SDK math - pythagorean theorem problem!

Just as a practice, I am working on an app that solves the famous middle school pythagorean theorem, a squared + b squared = c squared. Unfortunately, the out-coming answer has, in my eyes, nothing ...
11
votes
11answers
7k views

Find Pythagorean triplet for which a + b + c = 1000

A Pythagorean triplet is a set of three natural numbers, a < b < c, for which, a2 + b2 = c2 For example, 32 + 42 = 9 + 16 = 25 = 52. There exists exactly one Pythagorean triplet for which a ...
5
votes
5answers
1k views

Efficiently calculating all pythagorean triples knowing the hypoteneuse

Given a hypoteneuse (c in the typical equation a*a + b*b = c*c), what is an efficient way to calculate all possible integer values of a and b, such that a < b? Note: I've seen c be greater than ...