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
2 answers

Get IMG SRC info to show image

I have the following code that gets some information from the wolframalpha api: getResults("$q"); $pod =…
derekshull
  • 305
  • 1
  • 2
  • 14
0
votes
4 answers

Maximizing function with constrains in MatLab

I would like to maximize this function in MatLab - http://goo.gl/C6pYP maximize | function | 3x+6y+9z domain | 12546975x+525x^2+25314000y+6000y^2+47891250z+33750z^2<=4000000000 | for | x y z But variables x, y and z have to be nonnegative integers…
user2267971
  • 373
  • 1
  • 4
  • 12
0
votes
2 answers

Python Xml Parsing for Wolfram Api

I'm trying to get the out put of the wolfram api using a python xml parsing script. Here's my script: import urllib import urllib.request import xml.etree.ElementTree as…
user1985351
  • 4,589
  • 6
  • 22
  • 25
0
votes
1 answer

WP8 + WolfframAPI

I'm trying to use the Wolfram Library on a WP8 app, and am getting this error, as soon as it gets into the function that uses it, before it even starts the function. Type 'WolframAPI.WAResult' from assembly 'WolframAPI, Version=1.2.4112.34755, …
Kyle
  • 32,731
  • 39
  • 134
  • 184
0
votes
1 answer

Wolfram Alpha php implementation issue

I am trying to implement Wolfram Alpha API to my application. I download their language library and load their sample page in my browser. However, I got Warning:…
Rouge
  • 4,181
  • 9
  • 28
  • 36
0
votes
3 answers

How can Wolfram Alpha compute the divisors of 2305843008139952128 in less than a second?

I am trying to find the divisors of a huge integer I have made a question about that in Haskell but Haskell is not fast enough. I put the above number in Wolfram Alpha and the result was immediate. How this was done?
Dragno
  • 3,027
  • 1
  • 27
  • 41
0
votes
2 answers

Reference System.Data.Services.Client

I'm using VS C# 2010 Express and I am trying to use the code from this post but I am getting an error on the import: using System.Data.Services.Client; I tried to add a reference to it but can't find the item anywhere, assuming that is indeed the…
Nick
  • 9,285
  • 33
  • 104
  • 147
-1
votes
2 answers

3-Line --> triangle --> 3-inequality I want to convert

I would appreciate any good advice. I want to determine the inequality sign from the triangular part of the seven…
mrrclb46z
  • 89
  • 6
-1
votes
1 answer

How do I capture the plaintext of a result in wolfram alpha?

How do I capture the plaintext of a result in wolfram alpha? I tried it out but it didn't work. Here is my code: app_id = api_key client = wolframalpha.Client(app_id) res = client.query("what is the temperature in georgia") print("The Weather is " +…
Shadow
  • 17
  • 5
-1
votes
1 answer

How to plot the Wolfram Alpha grid? [MATLAB]

I would like to plot for any function this grid : This is the special case for f(z) -> 1/z This is a typical graph you can find on wolfram alpha. Nevertheless I don't know how to proceed. The idea would be to see where the lines of the complex grid…
Marine Galantin
  • 1,634
  • 1
  • 17
  • 28
-1
votes
1 answer

Python3 Wolframalpha Giving Error: urllib.error.URLError

Alright so a few days ago I wrote this code and it worked fine. import wolframalpha app_id = "MY-APP-ID-HERE" client = wolframalpha.Client(app_id) my_input = input("Question: ") res = client.query(my_input) Then today it just stopped working,…
techset
  • 7
  • 8
-1
votes
1 answer

How to assign equation-expression to variable then sent to solve()?

I am using both SageMath and Wolfram Alpha to entertain myself over the weekend. I found this SageMath demo of solving simultaneous equations: var('x y p q') eq1 = p+q==9 eq2 = q*y+p*x==-6 eq3 = q*y^2+p*x^2==24 solve([eq1,eq2,eq3,p==1],p,q,x,y) And…
user3676943
  • 913
  • 1
  • 13
  • 27
-1
votes
3 answers

Wolfram alpha: AttributeError: 'module' object has no attribute 'Client'

When I try to do a simple query using wolfram alpha I am getting these errors. This is my code: import wolframalpha input = raw_input("Question: ") app_id = "**************" client = wolframalpha.Client(app_id) res = client.query(input) answer =…
-1
votes
2 answers

Is there a way to determine which of two languages is calculating more accurately?

Situation: I'm running identical calculations in two separate languages (C++ & Scilab). The results are varying slightly when using transcendental function like sin() and exp(). I'm assuming this small difference is due to the following: The IEEE…
Paul Warnick
  • 903
  • 2
  • 13
  • 26
-1
votes
1 answer

How to parse return data from the wolfram alpha

Possible Duplicate: Extracting HTML from an XML file using simpleXML I am trying to apply Wolfram Alpha API to my project and I am really stuck on this problem. The return data from their server is xml, but I am not sure how to display the data…
FlyingCat
  • 14,036
  • 36
  • 119
  • 198
1 2 3
17
18