Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - AngelFish

Pages: 1 ... 5 6 [7] 8 9 ... 215
91
Site Feedback and Questions / Re: Project to stop attacks page
« on: November 01, 2012, 01:47:09 pm »
Huh, well it only just started happening and i have been using linux since 2yr ago, so i dont think i am infected.

how do i get off the blacklist?

This is a result of the cloudflare service we use to distribute omni. That said, you don't have a dynamic IP (hehe, mod powers...), so it's probably the user agent thing Netham mentioned.

93
Humour and Jokes / Re: The green lobster
« on: October 24, 2012, 03:43:48 am »
Yeah, I've upgraded my hardware from an when I was an android. I'm now a real boy. I still have the old hardware in case something breaks.
*a read lobster
read? ???
read.
real
reality, man.

*mindblown*

94
Other / Re: Picture Guide to IRC
« on: October 20, 2012, 12:10:56 am »
I should also note that Hexchat may not be available on Linux quite yet; however, XChat (which Hexchat is based off of, and is featured in the screenshots) is the one that you should use in place of Hexchat.

Hexchat IS available for Linux right now, although it's a bit buggy.

95
Other / Re: Picture Guide to IRC
« on: October 19, 2012, 10:45:46 pm »
Stickied

96
Other Calculators / Re: What should I buy?
« on: October 11, 2012, 08:50:49 pm »
Alright guys so I have a question: there are two great color calculators out thre, the Nspire cx cas and Casio prism. Which one should I buy? Or should I just bide my time until the new cm-c or cx-c to come out?

http://www.cemetech.net/forum/viewtopic.php?t=8118


97
Other / Re: Chromebooks - who needs 'em?
« on: September 11, 2012, 04:21:54 pm »
They're intel devices, which means they run x86-64 chips, which appears to typically be either dual-core Atom processors or an intel celeron for the higher end. They also appear to have around 2GB of RAM for the lower end chromebooks and 4GB for the higher end ones. Other than that, the only real features they appear to have are networking stuff like bluetooth and 3g connectivity. The notable lack of mention of graphics hardware tells me that they almost certainly use integrated GPUs, a decision that makes a lot of sense. As for storage, the official website is silent, but wikipedia records them all as having 16GB SSDs. You aren't going to be storing those cute vacation pictures locally, no sir. Of course, the chromebook is a cloud device and thus most of the storage should be in the cloud, right? Not if you don't have money in your wallet, it isn't. The chromebook comes with a service called Google Drive, which gives you 5 GB free. A standard low-end laptop nowadays comes with somewhere between 500 and 800 GB of HDD storage. Google will give you 400GB for the low, low price of $19.99 a month. But oh no, we're not done yet. Remember that networking I mentioned? That 3g looks very nice, doesn't it? Too bad. Unless you go with one of Verizon's data plans, you're stuck with 100MB a month. If you want to stream a movie for a day, you can either cough up $9.99 for a one-day unlimited data plan or upgrade to one of the higher monthly plans for around $10 a GB.

One might make an argument that you can find wifi anywhere, but this is often false. As someone who drives around a decent amount, it's sometimes a source of frustration that there are no open wifi networks, so I end up having to use a phone to connect to the cell networks. With a regular laptop, of course, not being able to connect to the internet is really just an annoyance. There's plenty you can still do with a computer that doesn't require the internet. The chromebook makes most all of these impossible because all of your files are stored in the cloud that you're almost certainly paying for. As far as I can tell, this is a computer for people with more money than sense. Non-wifi connectivity is not an option for a computer that stores most of its files remotely. It is a necessity in any mobile situation, as laptops are expected to be in. Furthermore, the hardware is basically just good for browsing, and even that goal would be problematic on any of the web's numerous flash/javascript monstrosities.

If you use your computer only for light browsing in wifi hotspots with fast data speeds and don't mind paying more, then this is the computer for you. For everyone else, it's a bad idea.

EDIT: @Shmibs, the signed OS functionality can technically be disabled if you're willing to jump through some hoops to turn it off. But it's still stupid.

98
Miscellaneous / Re: correlation coefficient
« on: September 09, 2012, 09:10:14 pm »
All of those methods are typically used for what is called root finding. Since you mentioned numerical analysis, in which root finding is a very common operation, I'll assume that's actually what they meant. However, this is probably also homework, so I won't give you a complete answer either. You'll have to figure the rest out on your own.

Let's begin:

Rule 1) In numerical analysis, always plot your function first. This will tell you something about its behavior and how best to approach it. It will also help alert you to any potential funkiness with how numerical methods handle the function. Here's the function you mentioned, (2-sin(2x)-ex) between x=-5 and x=2.2



Of course, that doesn't really tell us anything about the behavior of the function outside, so let's look at the contributions of the terms 2-sin(2x) and -ex to the function...



It's a lot more clear now, isn't it? As x→-∞, the function oscillates between 1 and 3, with a global maximum approaching 3. This is because the -ex term falls to 0 when x→-∞.

As x→∞, of course, the behavior changes radically. The sine term continues oscillating, but it's quickly overtaken by the negative ex which grows, well, exponentially. As you would expect, the value of the function approaches ∞. Take careful note of the term approaches. At no point on the real number line is the function ever "equal to" infinity in any sense. Infinity is not a real number and we can't use it as if it were one.

Now that we know how the function behaves, we can start with the more in-depth analysis. As you mentioned, we're going to be using root finding methods, so that means we'll be looking for roots. But of course, you need to prove that there are roots in the first place. One might think that the Fundamental Theorem of Algebra would solve this problem for us. One would also be wrong. Take careful note of the conditions of validity for that theorem: It only applies to non-constant polynomials. Neither the Sine function nor the exponential function are polynomials, so it doesn't apply here. However, we CAN still prove that there's a root, namely with the Intermediate Value Theorem. As before, we need to check the assumptions. The only assumptions we need to be concerned with are those for continuity and smoothness, both of which are easily determined by the fact that sine and exponentials, as well as all finite functions composed by elementary operations thereof, are analytic. Thus the function we have is analytic, and hence, both continuous and smooth. Accordingly, we can use the IVT. Taking this, we know that the function has a maximum at 3 and a minimum that approaches -∞ (to be perfectly rigorous, there actually is no minimum of this function, but that's not really relevant here). Therefore, there exists a root of the function in the reals.

Now that we've done all the ground work, we can actually go ahead and try to find that root. At this point, I'm kind of wanting to get back to my movie and google has perfectly good explanations of how these work. Just suffice to say that the end results will be pretty much the same (~x=0.33) if you choose the proper starting points.

Secant Method:
http://en.wikipedia.org/wiki/Secant_method
http://mathworld.wolfram.com/SecantMethod.html

Method of False position:
http://en.wikipedia.org/wiki/False_position_method#Numerical_analysis
http://mathworld.wolfram.com/MethodofFalsePosition.html

Newton's Method:
http://en.wikipedia.org/wiki/Householder%27s_method
http://en.wikipedia.org/wiki/Newton%27s_method
http://mathworld.wolfram.com/NewtonsMethod.html

99
Miscellaneous / Re: correlation coefficient
« on: September 09, 2012, 04:42:37 pm »
Technically you CAN generalize correlation coefficients to infinite sets, but the set typically has to remain bounded and there needs to be some reference curve with which to compute the coefficient. The curve (2-sin(2x)-e^x) is NOT bounded below and no reference curve is provided. Even if you assume a linear curve, the fact that the function given approaches negative infinity faster than a line means the result isn't in the reals (in other words, it's meaningless).

Unless you can provide an interval and spacing between points, the question isn't really answerable.

100
TI-Nspire / Re: Lua-based Ebook Reader (Does not require ndless)
« on: September 04, 2012, 11:27:13 pm »
Done (see PM). By the way make sure ebooks you post are really free though, not freely distributed copies of paid ones. :P
Thanks a lot :D :D :D
I'm pretty sure Taming of the Shrew is pretty free. It is Shakespeare after all, and we all know how popular his books and plays are :P

As a general rule: Anything published before 1924 is almost certainly public domain, anything after probably isn't.

101
Gaming Discussion / MOVED: List of Minecraft servers
« on: August 23, 2012, 03:23:31 am »
This topic has been moved to Minecraft Discussion.

http://ourl.ca/15754

102
Gaming Discussion / MOVED: annoyingcalc's minecraft server
« on: August 23, 2012, 03:18:36 am »
This topic has been moved to Minecraft Discussion.

http://ourl.ca/16521

103
Gaming Discussion / MOVED: Epic7's Minecraft Server
« on: August 23, 2012, 03:17:54 am »
This topic has been moved to Minecraft Discussion.

http://ourl.ca/16016

104
Gaming Discussion / MOVED: OmniMine
« on: August 23, 2012, 03:16:54 am »
This topic has been moved to Minecraft Discussion.

http://ourl.ca/15109

105
Gaming Discussion / MOVED: Minecraft PvP/Survival: Yogiverse & Arcadia
« on: August 23, 2012, 03:16:30 am »
This topic has been moved to Minecraft Discussion.

http://ourl.ca/16554

Pages: 1 ... 5 6 [7] 8 9 ... 215