|
Should I drop down to maths from further maths?
At my school if you take further maths you do the whole maths A level in year 1 and the whole further maths A level in the second year.
The problem is, we don't have double the amount of lessons so it is...
Started by Mouth on
, 13 posts
by 7 people.
Answer Snippets (Read the full thread at thestudentroom):
Re: Should I drop down to maths from further maths?
Thanks for the ....
Somewhere between 16-24 May.
Re: Should I drop down to maths from further maths?
C1/C2 will seem very easy after your school modules will be earlier i.e.
|
|
I was reading about MATLAB and I'm so much curious on it. But I have some questions:
Can I use it for anything except maths? Can you list some examples with links to the full code? I know that the name of the language is very subjective, but I want to...
Started by Nathan Campos on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
And Probability Test and Measurement Hi
Well, since maths IS everything, then a system to do maths can do -- if any of them are not maths according to your definition then yes Matlab can do something(s) other than maths .....
|
|
There is a Java library by the name of Uncommon Maths that claims to provide better random number generators than Sun and (potentially) even BouncyCastle. How one can determine whether their library can be trusted? I trust Sun and BouncyCastle because...
Started by Gili on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Uncommons Maths is not as widely used as some libraries in mind that "p happens....
You can always it for cryptography, something like Fortuna would be better .
That's as reliable as I know.
Test
Uncommon Maths claims to pass the Diehard tests .
|
Ask your Facebook Friends
|
Hi there, I regrettably haven't studied maths since I was 16 (GCSE level), I'm now a 27 year old c# developer. Would it be a fruitless exercise trying to work through this book? What kind of maths standard is expected of the reader?
Thanks in advance ...
Started by bplus on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
The....
The book talks about of math in general too.
If there was any difficult math, i think you can skip i think general understanding of math is good enough to understand the book.
To deal with that sooner or later in programming.
|
|
I am trying to set a variable based on some maths logic (to wrap specific html around elements).
I worked half the problem, to hit 0, 3, 6, 9, 12
if(($i % 3) == 0) { // blah }
Now I need to hit the following numbers, 2, 5, 8, 11, 14, etc
What possible...
Started by esrylx on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If((($i-2) % 3) == 0) { // blah }
Along with Tor... .
So just check for when 1 remains and 2 remains .
If($i % 3 == 1) if($i % 3 == 2)
Modulo returns the remainder, so when you match the 0, you get the 3rd, 6th, 9th, etc, because 0 is left in the division .
|
|
I am using 3D maths in my application extensively. How much speed-up can I achieve by converting my vector/matrix library to SSE, AltiVec or a similar SIMD code?
Started by Suma on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
These days all the good compilers for x86 generate SSE instructions for SP and DP float math by default a generic math library as you've mentioned....
Simulations, as well general 3D maths operation on meshes (rather than isolated vectors).
|
|
The English word is Maths but why do Americans drop the 's'?
Just wondering...
Started by culexus on
, 25 posts
by 24 people.
Answer Snippets (Read the full thread at bungie):
[Edited....
Americans words 'Maths' and 'Math' Posted by: moar 7 fish
Why do they call the smibbly bibbly a "remote control of the plollop.
Isn't it mathematics? Because math is a broad subject, and there aren't multiple "maths".
|
|
Should I take A Level Maths/ Further Maths?
Ok, I plan on taking A Level Maths, and Further Maths (with Physics and English Lit.)
At the moment my target grade is an A* and I am currently achieving that but only by a few marks.
My teachers have been ...
Started by hannahclaire on
, 9 posts
by 8 people.
Answer Snippets (Read the full thread at thestudentroom):
Re: Should I take A Level Maths/ Further Maths?
Maths definitely has....
Don't make the same mistake I made by not choosing further maths.
Re: Should I take A Level Maths/ Further Maths?
Take Maths and FM.
|
|
What i am really looking for is a maths equation function that takes in a string representing and equation and calculates the answer as a return type
For Example "(((4 * 5) + 6) * 2) / 8"
OutPut: 6.5
So in coding tearms something like
print calc("(((4...
Started by Shahmir Javaid on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
) * 2) / 8"); // 6.5 print $result;
If you end up rolling your own, read Smart design of a math.
|
|
I was glancing through the contents of Concrete Maths online. I had at least heard most of the functions and tricks mentioned but there is a whole section on Special Numbers. These numbers include Stirling Numbers, Eulerian Numbers, Harmonic Numbers so...
Started by kunjaan on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
A short summary from that list:
Golomb's Sequence Binomial Coefficients.
That appear in Concrete Math .
|