Tagged Questions
The simplify tag has no wiki summary.
18
votes
6answers
555 views
Strategies for simplifying math expressions
I have a well-formed tree that represents a mathematical expression. For example, given the string: "1+2-3*4/5", this gets parsed into:
subtract(add(1,2),divide(multiply(3,4),5))
Which is ...
8
votes
2answers
130 views
How to reduce the number of points in a curve while preserving its overall shape?
I have a list of points that make a curve, and I would like to reduce the number of points, but still keep the overall shape of the curve.
Basically, I want to go from this:
To this:
So the ...
7
votes
4answers
155 views
Simplify this regular expression
I'm doing some pre-exam exercises for my compilers class, and needed to simplify this regular expression.
(a U b)*(a U e)b* U (a U b)*(b U e)a*
Quite obviously, the e is the empty string, and the U ...
7
votes
5answers
188 views
Help me to simplify my jQuery, it's growing huge and redundant!
Hey all, I am no jQuery expert, but I'm learning. I'm using a bit (growing to a LOT) of jQuery to hide some images and show a single image when a thumb is clicked. While this bit of jQuery works, it's ...
6
votes
2answers
220 views
In Mathematica, how to simplify expressions like a == +/- b into a^2 == b^2?
In Mathematica, how can I simplify expressions like a == b || a == -b into a^2 = b^2? Every function that I have tried (including Reduce, Simplify, and FullSimplify) does not do it.
Note that I want ...
4
votes
4answers
170 views
Mathematica 8.0, obvious simplification missed, why?
I apologize beforehand if there’s an obvious answer, I’m not a user of Mathematica but I’m working on a borrowed laptop and that’s what I have available for the moment.
For some reason Simplify and ...
4
votes
3answers
237 views
Get mathematica to simplify expression with another equation
I have a very complicated mathematica expression that I'd like to simplify by using a new, possibly dimensionless parameter.
An example of my expression is:
K=a*b*t/((t+f)c*d);
(the actual ...
4
votes
1answer
126 views
Simplifying fractions in C#
I have made a console app that adds and subtracts fractions, I have added a function to simplify:
public static Numbers Add(Numbers n1, Numbers n2)
{
int den1;
int num1;
...
4
votes
3answers
228 views
how to combine exponents? (x**a)**b => x**(a*b)?
how to simplify exponents in equations in sympy
from sympy import symbols
a,b,c,d,e,f=symbols('abcdef')
j=(a**b**5)**(b**10)
print j
(a**(b**5))**(b**10) #ans even after using expand simplify
# ...
4
votes
7answers
195 views
How can I simplify this redundant code?
Can someone please help me simpling this redundant piece of code?
if (isset($to) === true)
{
if (is_string($to) === true)
{
$to = explode(',', $to);
}
$to = ...
4
votes
5answers
603 views
Most elegant combinations of elements in F#
One more question about most elegant and simple implementation of element combinations in F#.
It should return all combinations of input elements (either List or Sequence).
First argument is number ...
3
votes
2answers
196 views
Simplify a series in Mathematica
I'm having some issues simplifying some functions in mathematica. In a program I wrote I have a few functions calculated with the Sum function, many of the terms end up being multiplied by zero. I ...
3
votes
2answers
204 views
How do I force Mathematica to include user defined functions in Simplify and FullSimplify?
Let's say I have a relation r^2 = x^2 + y^2. Now suppose after a calculation i get a complicated output of x and y, but which could in theory be simplified a lot by using the above relation. How do I ...
3
votes
1answer
168 views
Simplify redudant jQuery code
I would like to simplify my jQuery code for a footer popup/tooltip animation because it is redundant and not very extensible. I found this post: jQuery code to simplify. but could not figure out how ...
3
votes
4answers
209 views
How to simplify a if/else jquery snippet
I have a super long jquery snippet that I feel could be simplified with the right logic. I'm afraid to touch it since I finally got it to work.
the "else $target = #none" is literally a "show ...
3
votes
4answers
102 views
Simplifying multiple echos
I have a full list of timezones in a select menu like so:
<option value="Pacific/Kosrae"> Pacific/Kosrae( +11:00 GMT ) </option>
<option value="Pacific/Kwajalein"> ...
3
votes
3answers
165 views
Is it possible to join these two regex expressions into one?
i have the following two regular expressions (in order btw).
1. ^~/buying/(.*)\?(.*) => foo= group 1 baa= group 2.
2. ^~/buying/(.*) => foo= group 1 baa= nothing/empty/null/baibai
...
3
votes
1answer
215 views
how to simplify this database update query (php)
How could I simplify this update instruction? Whenever a client buys an item it will update the sales with 1.
$this->db->query('SELECT amount FROM shop_items WHERE itemid='.$itemid.'');
...
2
votes
1answer
128 views
Simplifying ReaderWriterLockSlim Syntax
I recently had to use ReaderWriterLockSlim to synchronize access to several resources that are shared between multiple threads. While doing it, I felt that using ReaderWriterLockSlim is not easy ...
2
votes
7answers
93 views
Is there a way to simplify this JavaScript code? (same functions for multiple classes)
Hi the code I am trying to simplify is:
$(document).ready(function(){
$('.selection0').click(function() {
$('.selection0').css('background-color', 'white');
...
2
votes
8answers
842 views
Simplification / optimization of GPS track
I've got a GPS track, produces by gpxlogger(1) (supplied as a client for gpsd). GPS receiver updates its coordinates every 1 second, gpxlogger's logic is very simple, it writes down location (lat, ...
2
votes
3answers
455 views
Simplify replacement of date object with “today” and “yesterday” strings in Java static method
I have following method that I would like to make shorter or faster if nothing else. Please all comments are welcome:
Bellow method takes a date object, formates it ("EEE hh:mma MMM d, yyyy") and ...
2
votes
5answers
162 views
PHP: simplify with algorithm?
Here's a piece of PHP code I think is not very "pretty", I'm sure it's possible to simplify it with for or something. I'm trying to find and algorithm that would work for this, but I can't figure it ...
2
votes
1answer
104 views
Simplifying Jquery code HELP!
I am trying to load two modal dialog boxes with Jquery. Both of them load separate pages using ajax. The only problem is that only one of them works.
I think I need to simplify my code but am unsure ...
2
votes
8answers
144 views
How to simplify this code or a better design?
I am developing a game, the game have different mode. Easy, Normal, and Difficult.
So, I'm thinking about how to store the game mode. My first idea is using number to represent the difficulty.
...
2
votes
5answers
110 views
Can this sql query be simplified?
I have the following tables:
Person, {"Id", "Name", "LastName"}
Sports, {"Id" "Name", "Type"}
SportsPerPerson, {"Id", "PersonId", "SportsId"}
For my query I want to get all the Persons that excersise ...
2
votes
7answers
454 views
Simplifying FOR loops
I have a function that essentially reads values in from a vector of doubles, appends these to a string (while ensuring a space between each and setting their precisions) and returns the end result, ...
2
votes
5answers
336 views
All picks of a list in F# - more elegant and simple
Could someone propose better and/or more elegant implementation of this:
let each xs =
let rec each' acc left right =
match right with
| [] -> acc
| right -> let ...
1
vote
3answers
40 views
SQLITE3 compound “Select” statement
I have a table with several columns. Columns 1and 2 can contain any of four alpha values: set={A,B,C, D}.
I want to check if each column to see if they contain either of two values from the set. So ...
1
vote
2answers
53 views
Matlab's simplify behavior
I'm trying to simplify some symbolic equations.
>> syms x;
>> simplify(sqrt(x^2)/x)
ans =
(x^2)^(1/2)/x
Actually, I want matlab to return 1 or smth like that.
>> ...
1
vote
2answers
54 views
Is there a way to simplify these 3 functions into 1 function? [closed]
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>Vote!</title>
<script type="text/javascript">
var x1 = 0;
...
1
vote
7answers
176 views
Help me simplify this code (Python)
I'm a beginner in Python, teaching myself off of Google Code University. I had this problem as an exercise, and was able to solve it using the solution shown below:
# F. front_back
# Consider ...
1
vote
1answer
24 views
Simplifying code with LINQ (Collections within collections)
Given an object graph that looks something like the following;
A --> B[] --> B1[]
--> B2[]
--> C[]
I need to check certain conditions on members/properties of B1 and B2 ...
1
vote
1answer
74 views
Simplify my JS code
I just made this code for the menu of a site. The problem is that I'm pretty sure it can be simplified.
I don't know if I can use a switch or something, I am only beginner with Jquery ....
...
1
vote
1answer
204 views
Scala underscore use to simplify syntax of function literals
I have the following code:
var x = Array(1,3,4,4,1,1,3)
var m = Int.MaxValue
x.foreach((x)=>(m = m min x))
I tryied to simplify last sentence to:
x.foreach((m = _ min m))
But the interpreter ...
1
vote
3answers
170 views
trying to write foreach in oneline in perl and failed
new to perl, trying to playing around with its syntax a bit, then I got this error message
$ perl testP
syntax error at testP line 3, near "$_ ("
Execution of testP aborted due to compilation ...
1
vote
6answers
471 views
PHP Make a simple if-isset-empty function
I'm coding a worksheet app for a printer company.
I'm getting flood of forms.
For every single input field I have to check the _POST variables are set and if it is than echo back the value. (In case ...
1
vote
1answer
60 views
Combining mysql queries that recycle multiple self joins
I have the following set of MySQL queries, used to track user progress through a website. Is there a good way to simplify them?
#How many people reached stage 2
SELECT COUNT(DISTINCT a.session_id) as ...
1
vote
3answers
161 views
Ways to simplify and optimize my code?
I've got some code which i would like to optimize.
First, not bad at all, but maybe it can be a bit shorter or faster, mainly the update_result method:
class Round < ActiveRecord::Base
...
1
vote
3answers
270 views
Open-Source Trigonometric Equation Simplifiers (preferably C-based)?
I have done some searching around the internet trying to find some form of example code that will allow me to simplify trigonometric equations. In my mathematics course-work this year I am required to ...
1
vote
6answers
163 views
jQuery code to simplify
I've got this code but it's a bit repeating itself, is there a way to make it shorter?
jQuery(document).ready(function() {
var allTabs = jQuery('#front, #blog, #portfolio, #pages, #colors, ...
1
vote
3answers
187 views
Reuse expression in SQL sentence
I'm using MySQL and I'm going mad trying to simplify a bit complex SQL sentence.
The query is this:
SELECT `provider`.*,`products`.`placement`,`price`.`price`+
IFNULL((SELECT `price` FROM `price` ...
1
vote
4answers
72 views
Simplify/Neatify this two-way loop?
I've got my wires crossed somewhere (or I had not enough sleep). I need a two-way loop, and my current code is just plain ugly.
Problem: I am running along a linear datastructre using an index. I ...
1
vote
5answers
817 views
How to simplify my country select menu PHP/mysql
I have a select menu that displays countries. It looks at the DB and judging by the value in the db shows the option as selected. Is there a simpler way off doing this than:
if ($country == 'AG') ...
1
vote
1answer
110 views
Simplify WCF configuration
I have a bunch of self-hosted WCF services. Everything's working fine but I'm look for ways to normalize/simplify the resultant config. I've simplified it as much as possible, but I'm still not happy. ...
1
vote
3answers
86 views
Can this sql query be simplified?
I have a Sql Query:
select * from contactmeta
WHERE
contactmeta.contact_id in
(
select tob.object_id from tagobject tob, tag t, taggroup tg
where tob.tag_id = t.tag_id
and t.tag_group_id = ...
1
vote
3answers
156 views
How can I simplify this PHP?
I have the following model functions with PHP.
I know I am repeating myself.
Is there anyway I can simplify this code?
function getTopMenus(){
$data[0] = 'root';
...
1
vote
3answers
140 views
How to make a build (java) as “CM-independent” as possible? (CM=Configuration Manager)
I have been thinking of making one of the project builds I handle, as "independent" of me(CM)as I possibly can. By this I dont just mean automation via scripts/tools - although it definitely includes ...
1
vote
8answers
668 views
How best to switch from template mess to clean classes architecture (C++)?
Assuming a largish template library with around 100 files containing around 100 templates with overall more than 200,000 lines of code. Some of the templates use multiple inheritance to make the usage ...
0
votes
1answer
36 views
simplifying a MYSQL query, and fixing
I've been trying to get this complex MYSQL query to work exactly right over the last few days, of course because it's got so many aspects to it that effect it it's difficult to surely know that it's ...