Questions tagged [wolframalpha]

Wolfram Alpha (also written WolframAlpha and Wolfram|Alpha) is an answer-engine developed by Wolfram Research

Wolfram|Alpha is an online service that answers factual queries directly by computing the answer from structured data, rather than providing a list of documents or web pages that might contain the answer as a search engine might. It was announced in March 2009 by British scientist Stephen Wolfram, and was released to the public on May 15, 2009.

Source: Wikipedia

257 questions
0
votes
1 answer

Using jQuery and ajax to access Wolfram API XML data

I can't seem to figure out how to access the XML data from the Wolfram API. This page is a REST-style API, although I'm still learning what that means. A sample query page is here:…
0
votes
1 answer

Eigenvector. Implementing Jacobi algorithm

I am implementing Jacobi algorithms, to get eigenvectors of symmetric matrix. I don't understand why i gain different eigenvector from my applications (same result like mine here:…
Kuba Wenta
  • 580
  • 1
  • 5
  • 25
0
votes
2 answers

How to get prime factorization with a factor base in wolfram alpha?

How can I get the prime factors of a (non-prime) number, with all the primes being less than a factor base B. For example if B=8, then the primes used can only be in {2,3,5,7}. And given 48, it returns 2^4 * 3. Anyone know how to do this in wolfram…
omega
  • 40,311
  • 81
  • 251
  • 474
0
votes
1 answer

Solving math and got a different output from Python and Wolfram Alpha

I found this picture on 9gag and I decided to write a python code to see if this is true However, when I run the following python code, I got a different result from what I got from Wolfram Alpha import numpy as np import matplotlib.pyplot as…
atmosphere506
  • 343
  • 3
  • 14
0
votes
1 answer

Translate WolframAlpha query to Mathemtaica code

There is a way to convert question from wolframalpha to mathematica code?For example, I asked the question "notable people born in France" on [wolframalpha:http://www.wolframalpha.com/], and I want to do the same on mathematica (Version 10). Thanks.
Michal Vanunu
  • 71
  • 1
  • 5
0
votes
1 answer

result expanded to maximum (more) on wolfram alpha query

I am using mathematica to query wolfram alpha for a query. for that purpose I use: WolframAlpha["prime minister of france", "PodPlaintext"] I took the options from here: http://reference.wolfram.com/language/ref/WolframAlpha.html My problem is that…
antonpuz
  • 3,256
  • 4
  • 25
  • 48
0
votes
1 answer

Arithmetically simulate 32-bit integer overflow

Is there a way to arithmetically simulate 32-bit, twos-complement integer overflow with numbers of a type whose value space is a strict superset of that of the 32-bit twos-complement integers? I need to perform such an operation in, for example,…
Pier-Alexandre Bouchard
  • 5,135
  • 5
  • 37
  • 72
0
votes
0 answers

What is the constant term obtained when using Integration in Wolfram Alpha?

I try to use wolfram Alpa to compute a complex integral, integrate( 0.0016*v^(-0.5)*(1-exp(- 0.0112*v^0.5))+ 0.0036*v^(-0.5)*(1-exp(-0.0090*v^0.5))) I get the following result 0.285714 e^(-0.0112 sqrt(v))+0.8 e^(-0.009 sqrt(v))+0.0104…
George
  • 81
  • 1
  • 13
0
votes
2 answers

Wolfram alpha is able to integrate an indefinite integral but not a definite integral of the same function?

My question is regarding integration. I have a complex function that needs to be integrated and its a definite integral. The thing is when I use Wolfram Alpha to integrate this function it gives me nothing i.e its unable to compute it. However if I…
George
  • 81
  • 1
  • 13
0
votes
0 answers

How to graph an ellipsoid with only the three radii

While working on a project, using a magnetometer chip, I have run into a problem where I need to graph some data, consisting of three diameters (or d/2 = radii). Is there an easy way to do this with Wolfram Alpha, or another online, free tool? In…
Pip
  • 4,387
  • 4
  • 23
  • 31
0
votes
1 answer

Get a result in the units [km/week]

In Wolfram alpha I can use this formular: ((7days/week) *(1000km-691.3km) / (today - end of year)) and it will display the result using various units. But I want it in the units Kilometers per Week. I tried various variations, like this…
Jens Schauder
  • 77,657
  • 34
  • 181
  • 348
0
votes
3 answers

Divergent Integral in R is solvable in Wolfram

I know that I asked the same question before, but as I am pretty new here the question was asked poorly and not reproducible. Therefore I try to do it better here. (If I only edit the old one probably nobody will read it) I have this double integral…
Valegard234
  • 45
  • 1
  • 7
0
votes
0 answers

Can Mathemetica solve 625 coupled Linear differential Equations?

I am trying to solve some physics problem in which i need to solve 625 linear coupled differential equations. I am using the command DSolve for solving them. When i used the same procedure for 25 equations it is working well. Only difference is, in…
Bharath
  • 69
  • 1
  • 4
0
votes
2 answers

Plotting the clamp function on wolframalpha

It's not obvious to me how to plot on wolframalpha a function that contains conditionals, the one I have in mind is: clamp lowerBound upperBound i | i > upperBound = upperBound | i < lowerBound = lowerBound | otherwise = i
Toshio
  • 133
  • 8
0
votes
1 answer

android wolfram alpha Exception downloading URL

I am trying to use walfram alpha in my app I already got my code working in a java project but when I'm trying to use it in android I'm getting "Exception downloading URL" Here is my code public class AlphaAPISample extends Activity{ // PUT YOUR…