formulas

Website By: Luis A. Mendez

The rise of a young eagle

One machine can do the work of fifty ordinary men. No machine can do the work of one extraordinary man. - Elbert Hubbard

Mathematics Bachelors in Science Requirements:

Since the beginning of the semeser I have become more intrested in program delevopment. Thank you for your help in opening up my mind.

Linkedin profile page:

Projects will be uploaded and linked below.

Scratch project play now:

Florida Gulf Coast University - Future Mathematician and Engineer

What I Learned:

Click Here

Project Euler Problem 6

The sum of the squares of the first ten natural numbers is,

12 + 22 + ... + 102 = 385

The square of the sum of the first ten natural numbers is,

(1 + 2 + ... + 10)2 = 552 = 3025

Hence the difference between the sum of the squares of the first ten natural numbers and the square of the sum is 3025 385 = 2640.

Find the difference between the sum of the squares of the first one hundred natural numbers and the square of the sum.

My code:

var sum_of_squares = 0;
var square_of_sum = 0;
var sum_ = 0;
for(var i = 1; i < = 100; i++){
var square = Math.pow(i, 2);
sum_of_squares += square;
sum_ += i;
}
square_of_sum = Math.pow(sum_, 2);
document.write(spam class='p-js'sum of squares = , sum_of_squares, " ");
document.write(span class='p-js' square of sum = , square_of_sum, " ");
var difference= square_of_sum - sum_of_squares;
document.write(span class='p-js' difference = , difference, " ");

The answer is:

If statement was not needed for euler problem #6 because it is not applicable but a for statement was.
The if statement shows that if it proves to be true, it will perform a function or display a situation.

My Field Report:

Computer science is the art of teaching a computer what to do. For example, a screw driver that is made to turn screws and without it it’s very useless. The process of where a computer learns a set of instructions to transform in ways to playing movies, audio files, and surfing the web. It’s all a language of code and instructions to make things work.

Software engineering is a systematic, discipline, quantifiable approach to the development, operation, and maintenance of software. It is applying through the entire life cycle beginning of specifications to maintenance after system deployment. The engineering approach provides a predictability and quantifiable approach. It applies theories, frameworks and, tools. Resulting in high-quality software created at cost-effective manners. Software engineering gives three layers which they are called the process, the methods, and the tools layer to provide support and solutions to building software.

Information technology is a part of information system and it is the idea of using computer and technologies with people and knowledge to help businesses to transfer information through networks. IT benefits to hold information between people and in the business sectors. It is a practice of creating computer systems and applications.

My main interesting in computer science is artificial intelligence which is a hot topic in modern days. The official idea of AI came from John McCarthy where he quoted that a machine can be made to simulate with the ability to solve problems that are usually done by humans without own intelligence. In 1955, there were 7 aspects of A.I. which could include simulating human brain, programming computer languages, forming concepts a way to determine measure problems complexity, self-improvement, randomness and creativity, and dealing with ideas other than events. Many of those today were solved and that are continues to be studied today. There are a lot

of A.I. form the Turing test to video games to self-driving cars. Computer architecture is the design of the computer which instruction sets, computer organization in computer systems. Two essential section are instruction set architecture and focuses how the machine language programmers interact with the computers. The second essential section is hardware systems architecture which interacts with the major hardware sub system including the computer central processing unit.

Computer graphic is used to create many images which are pixels that are pixels given color barriers. You do calculations to its position to 3d space and involves in specifying color mathematically. They produce how to get the right pixels to show on the screen. It helps manipulate the image by using algorithms and data structures to draw the complete image. It is considered an art done on the computer.

Computer Science - Completion of Eulerproject.net problem

HTML5 SECTION:

Making a Canvas:

Video in HTML5:

Audio in HTML5:

JavaScript Celcius to Fahrenhet

Insert a number into one of the input fields below:



SVG in HTML5:

Luis Mendez

HTML5 USAGES

Valid CSS! HTML5 Powered with CSS3 / Styling, and Semantics