Top new questions this week:
|
Integrate[(1 + 16 Tan[2 x - y]^2)/(1 + 4 Tan[2 x - y]^2), {x, 0, 2 π}]
Mathematica (wrong) output is (tested under versions 8 and 10.0, took ~ 1 minute of CPU time)
10 π
The correct value of this ...
|
Can anyone sort out what the Front-End is, how it is structured and what its relationship to the Kernel is.
The FrontEnd is mentioned quite often but elusively avoids to be caught and clearly defined.
...
|
I would like to simulate an Ito process in which the drift and diffusion terms change after hitting a boundary for the first time.
For example, a Geometric Brownian Motion X which has 0 drift and ...
|
I have a list of about 500 images similar to the following:
A = Import["http://i.stack.imgur.com/1bV4O.png"]
AbsoluteTiming[Colorize[A, ColorFunction -> "AvocadoColors"]]
Gives ~ 0.6 ...
|
The Python programming language has a float.as_integer_ratio(x) function which exactly converts an IEEE 754 floating-point number into a numerator/denominator pair of integers. For example:
...
|
In C (and many other programming languages), there is a function
double nextafter(double x, double y)
which takes two (IEEE 754) floating-point numbers and returns the next representable ...
|
In How can I generate and randomly assign color to annular sectors? J.M. showed an interesting way to create a sector graphic using FilledCurve. Unfortunately it was marred by an inferior rendering ...
|
Greatest hits from previous weeks:
|
I want to find :
all local maxima in range
all local minima in range
From those points I can interpolate and combine functions upper and lower boundary. What I am really interested in, is the ...
|
a = (Sqrt[2] + 1) (Sqrt[2] - 1) - 1;
{a/a, Simplify[a]/a, b/b == Simplify[b]/b}
{1, 0, True}
This one line "proof" that one equals zero is disturbing (and could possibly lead to wrong results ...
|
Can you answer these?
|
I have a set of lines I pulled from an image that make a closed loop, pretend it's a unit square for reference. Is there a way to use such an arbitrary region for solving PDEs, and is there a way to ...
|
I want to "map" an argument to a list of functions.
Here is the concrete Problem. I generate a list "Messungfit" of functions:
Messungfit = Table[LinearModelFit[Messungenplot[[i]], {1, x}, x], {i, ...
|
The command
SystemInformation["Devices", "ScreenInformation"]
returns the screen area in the monitors connected to its host computer:
{{"ScreenArea" -> {{65, 3200}, {24, 1080}},
...
|