Tagged Questions
0
votes
0answers
44 views
Optimizing accuracy for findroot
I am dealing with the following optimization problem where I am trying to find a root of a function. Yet, the problem with the function is that large and small numbers both occur, and no matter how I ...
0
votes
1answer
46 views
Mathematica – Optimize over array variable
Suppose I have a function of some x and an array variable.
A = Array[a, 2];
f[x_] := (x-.5)^2 + a[1]^2 + a[2]^2
Now I would like to minimize over both, which leads to an error.
FindMinimum[f[x], ...
1
vote
1answer
94 views
Optimizing all permutations of certain equations
I'm solving an optimization problem in Mathematica. I want to generate additional equations where a variable z_k is substituted with (z_k - 1) or (z_k + 1).
How can I automate this and add these ...
1
vote
1answer
129 views
Maximizing in mathematica with multiple maxima
I'm trying to compute the maxima of some function of one variable (something like this:)
(which is calculated from a non-trivial convolution, so, no, I don't have an expression for it)
Using the ...
11
votes
2answers
318 views
Does passing a variable with a large amount of data cost a lot of memory and time in Mathematica?
I am coding up an algorithm for constructing a suffix tree in Mathematica based on Ukkonen's algorithm.
The question I have is, will passing my entire tree structure (which I have stored in a list) ...
2
votes
2answers
491 views
Mathematica: how to find the max of an expression with exponents as parameters
I'm using Mathematica 8 to find an analytic solution to the max of an expression. When I use the Maximize command to try to find a solution, it just repeats what I entered, implying that Mathematica ...
9
votes
1answer
238 views
Why the relative efficiency of these routines in Mathematica?
I was surprised by a timing difference that Daniel Lichtblau pointed out in two ways to get at the differences between the number of prime factors (PrimeOmega) and the number of distinct prime ...
3
votes
4answers
847 views
How to solve Euler Project Prblem 303 faster?
The problem is:
For a positive integer n, define f(n) as the least positive multiple of n that, written in base 10, uses only digits ≤ 2.
Thus f(2)=2, f(3)=12, f(7)=21, f(42)=210, ...
5
votes
1answer
277 views
Optimizing calculation of frequencies of gametes in populations
I need to optimize calculation of the frequencies of gametes in populations.
I have np populations and Ne individuals in each population. Each individual is formed by two gametes (male and female). ...
5
votes
2answers
600 views
Mathematica: Evaluation order during numerical optimisation of black box functions
I am attempting to perform a numerical optimisation of a "black box" function in Mathematica. Schematically it goes like this:
NMinimize[{comb[x,y,z], x > 0}, {x,y,z}]
where comb[x,y,z] is ...
3
votes
2answers
370 views
NMinimize eats all memory b/c of unnecessary symbolic work
The following code is a naive way to find the least number whose square has n divisors (the minimum should be its log and the x_i the powers in its prime factorization). If I look at the case n=2000 ...
2
votes
2answers
569 views
Mathematica: Commands return no output, but itself. Bug?
I am working with Wolfram Mathematica 8 and have the following problem. I have an optimization problem under certain constraints and want to have an analytical (symbolical solution). I am maximizing ...
2
votes
2answers
211 views
Mathematica exponentiation and finding a specified coefficient
I have the following code, and it does exactly what I want it to do, except that it is ridiculously slow. I would not be so bothered, except that when I process the code "manually", i.e., I break it ...
3
votes
4answers
186 views
Optimize parts extraction
I have this specific function to extract parts of a list in the form: Give[list, elem] returns the part of list that corresponds to the position of elem in a global $Reference variable (if defined). I ...
5
votes
2answers
544 views
Mathematica calls NMinimize with symbols rather than numbers?
I noticed the following behavior while using NMinimize in Mathematica. The first invocation of the objective function is with variable names, rather than with points from the space, as one would ...
11
votes
1answer
283 views
Left vs Right linked list, Replace speed
There are two obvious ways to structure a linked list in Mathematica, "left":
{1, {2, {3, {4, {5, {6, {7, {}}}}}}}}
And "right":
{{{{{{{{}, 7}, 6}, 5}, 4}, 3}, 2}, 1}
These can be made with:
...
3
votes
2answers
321 views
Optimizing Mathematica's main loop
Good day,
Reading this thread about performance of pattern matching and functions in Mathematica I was impressed by Timo's idea on optimizing the evaluation of expressions:
I have on occasion ...
3
votes
1answer
259 views
Advice on Optimization routine/Constraints to use
I am trying to do some numerics and having a difficult time determining the appropriate way to solve a problem and looking for some feedback.
So far I have done all my work in Mathematica, however, ...
0
votes
2answers
809 views
Optimizing interpolation in Mathematica
As part of my work, I often have to visualize complex 3 dimensional densities. One program suite that I work with outputs the radial component of the densities as a set of 781 points on a logarithmic ...
3
votes
1answer
382 views
Optimizing an inner loop calculation in Mathematica
I'm currently doing some computation in Mathematica related to Quantum Mechanics. As we've moved from a 1D to 2D lattice model, the problem size is becoming problematic
Currently, we have a summation ...
5
votes
3answers
588 views
Two strange efficiency problems in Mathematica
FIRST PROBLEM
I have timed how long it takes to compute the following statements (where V[x] is a time-intensive function call):
Alice = Table[V[i],{i,1,300},{1000}];
Bob = ...