Free Essay

Function with Eee

In:

Submitted By MoinUddin
Words 819
Pages 4
Ans. to the q. no-1(b)
Matlab command: clear all close all x=-10:0.01:10; fx=((cos(x)).^2-x+6); plot(x,fx); ylim([-5,5]); grid on
Figure:

Ans. to the q. no-1(c)
Matlab command: clear all close all tol=10^-8; a=6; b=7; f=@(x) ((cos(x)).^2-x+6); r=f(a).*f(b); while (b-a)/2>tol if r<0 c=(a+b)./2; s=f(c); else ('Product is positive') end if f(c)==0 break end if f(c).*f(a)<0 b=c; else a=c; end end c Result: c = 6.776092305779457
Ans. to the q. no-1(d)
Solution: I have fixed tol=10^-8 so that I can find the solution is correct to seven decimal places and the results of MATLAB command using tol=10^-8 : c =

6.776092320680618

c =

6.776092305779457
Ans.to.the.q.no-2(b)
clear all close all x=-10:0.01:10; f=log(x)+(x.^2)-3; plot(x,f) grid on ylim([-10,10]) xlabel('x'); ylabel('f(x)'); Graph:

Ans.to.the.q.no-2(c): Bisection using for loop:
MATLAB COMMAND: clear all close all format long a=1; b=2; f=@(x) log(x)+(x.^2)-3; r=f(a).*f(b); c=zeros(28,1); for n=1:28; if r<0 c(n)=(a+b)/2; s=f(c(n)); else ('Product is positive') end if f(c(n))==0 break end if f(c(n))*f(a)<0 b=c(n); else a=c(n); end end c Result: c =

1.500000000000000 1.750000000000000 1.625000000000000 1.562500000000000 1.593750000000000 1.578125000000000 1.585937500000000 1.589843750000000 1.591796875000000 1.592773437500000 1.592285156250000 1.592041015625000 1.592163085937500 1.592102050781250 1.592132568359375 1.592147827148438 1.592140197753906 1.592144012451172 1.592142105102539 1.592143058776856 1.592142581939697 1.592142820358276 1.592142939567566 1.592142879962921 1.592142909765244 1.592142924666405 1.592142932116985 1.592142935842276
Ans.to.the.q.no-2(d): Setting tolerance in above for loop: clear all close all format long tol=10^-8; a=1; b=2; f=@(x) log(x)+(x.^2)-3; r=f(a).*f(b); c=zeros(28,1); while (b-a)/2>tol for n=1:28; if r<0 c(n)=(a+b)/2; s=f(c(n)); else ('Product is positive') end if f(c(n))==0 break end if f(c(n))*f(a)<0 b=c(n); else a=c(n); end end end c

c =

1.500000000000000 1.750000000000000 1.625000000000000 1.562500000000000 1.593750000000000 1.578125000000000 1.585937500000000 1.589843750000000 1.591796875000000 1.592773437500000 1.592285156250000 1.592041015625000 1.592163085937500 1.592102050781250 1.592132568359375 1.592147827148438 1.592140197753906 1.592144012451172 1.592142105102539 1.592143058776856 1.592142581939697 1.592142820358276 1.592142939567566 1.592142879962921 1.592142909765244 1.592142924666405 1.592142932116985
If I set the tolerance via while loop just above of for loop then I can relate the tolerance and step number. Here I have observed that when I change tolerance less than 10^-8 result changes and also when I change the step number than result got change.
Ans. To. The. q. no-3(b) clear all close all x=-10:0.01:10; g=((2.8).*x)-(x.^2); plot(x,g) grid on; hold on; y=x; plot(x,y) ylim([-2,3]) Graph:

Rearranging the equation for which fixed point is a solution: clear all close all x=-10:0.01:10; g=((2.8).*x)-(x.^2)-x; plot(x,g) grid on; hold on; y=x; plot(x,y) ylim([-2,3]) graph:

Ans. to the q.no- 3(c):
MATLAB Command: clear all close all format long x=0.5; x(1)=x; g=@(x) (((2.8).*x)-(x.^2)); for i=1:151; if x(i)==g(x(i)) break else x(i+1)=g(x(i)); end end i x(i)
Result:
i =

151

ans =

1.800000000000003
Ans.To.the q. no-4(a): clear all close all x=-10:0.01:10; g=(cos(x)-sin(x)+x); plot(x,g) grid on; hold on; y=x; plot(x,y) ylim([-20,20]) Graph:

In above curve I can observe there are lots of fixed point.
Ans.to.the.q.no- 4(c)
Matlab command: clear all close all format long x=0.5; x(1)=x; g=@(x) (cos(x)-sin(x)+x); for i=1:39; if x(i)==g(x(i)) break else x(i+1)=g(x(i)); end end i x(i) result: i =

39

ans =

0.785398163397448 as in 4(a) we can see we have find lots of fixed point then considering initial guess=0.5 we can find a fixed point for corresponding guess. And 39 step are need to reach to fixed point.

Similar Documents

Free Essay

E Manual

...E5755 Eee PC User Manual Windows® 7 Edition Eee PC 1001P/1005P/R101/ R105 Series 15G06Q256000 Table of Contents Table of Contents....................................................................................................................... ii About This User’s Manual.......................................................................................................iv Notes for This Manual..............................................................................................................iv Safety Precautions.....................................................................................................................v Transportation Precautions....................................................................................vi Charging Your Batteries..........................................................................................vii Airplane Precautions................................................................................................vii Chapter 1: Knowing the Parts Top Side.....................................................................................................................................1-2 Bottom Side..............................................................................................................................1-5 Front Side..................................................................................................................................1-6 Right...

Words: 7992 - Pages: 32

Premium Essay

Tqm Assignments

...Department of Electrical and Electronics Engineering BE EEE – VII Sem ( 2012 – 2013 ) Total quality management Assignment-1 1. Define quality. 2. Mention any four principles of TQM 3. Define Quality cost. 4. Define strategic planning. 5. What are the steps involved in strategic planning? 6. What are the types of quality statement? 7. Name any two popular awards for quality. 8. What is Quality Council? 9. What do you mean by total cost of quality?? 10) Define TQM. 11)what is quality planning? 12)Define mission, vision and guiding principle. What is purpose of each? 13)What is role of senior management in TQM implementation? 14)What is an ISO definition of quality? 15)List the various levels of TQM adoption? Department of Electrical and Electronics Engineering BE EEE – VII Sem ( 2012 – 2013 ) Total quality management Assignment-2 1)Define customer satisfaction. 2. How the customer complaints are collected? 3. Define service quality. 4. Name some customer perception on quality. 5. What is employee motivation? 6. Define Kaizen. 7. List out the 5’S of Japanese methodology with its purpose. 8. Define partnering. 9. Define Empowerment. 10. What do you understand by performance appraisal? What is the use of it? 11.list the objectives of performance measures. 12.what is supplier rating? Department of Electrical and Electronics Engineering BE EEE – VII Sem ( 2012 – 2013 ) Total quality management ...

Words: 525 - Pages: 3

Premium Essay

Eastern Equine Encephalitis

...Eastern Equine Encephalitis Jennifer Walker University of Phoenix HCS/457 H. Steiner September 12, 2011 CONTENTS List of Tables 3 Summary Error! Bookmark not defined. References 7 List of Tables Website Review |Website |Website Information Type |Type of Surveillance: |Data changes over time: |Identify two interventions | |Local website:http://www.co.oswego.ny.us/ |Update on spraying, FAQ’s, prevention |One confirmed death |Increase of tested |DEET repellent, oil of | | | | |mosquito’s positive for |lemon/ eucalyptus | | | | |virus | | |Local website: |Investigation, intervention education, research |Monitoring Rochester |No cases in county yet |Link to New York Department| |http://www.monroecounty.gov/health-diseases.php#SexuallyTransmi|handles all communicable diseases |area health data | |of health for interventions| |tted | ...

Words: 1129 - Pages: 5

Free Essay

Business

...Background Origin ASUSTeK Computer Inc., usually referred to as Asus and trading under that name, is a Taiwanese multinational computer hardware and electronics company headquartered in Beitou District, Taipei, Taiwan. Its products include desktops, laptops, net books, LCDs, mobile phones, networking equipment, monitors, motherboards, graphics cards, optical storage, multimedia products, servers, workstations, tablet PCs and video cards. The company's slogan is: "Inspiring Innovation. Persistent Perfection." ASUS takes its name from Pegasus, the winged horse in Greek mythology that symbolises wisdom and knowledge. ASUS embodies the strength, purity, and adventurous spirit of this fantastic creature, and soars to new heights with each new product it creates. The Taiwanese information technology industry has grown enormously over the last few decades and the country is now a dominant player in the global market. ASUS has long been at the forefront of this growth and although the company started life as a humble motherboard manufacturer with a handful of employees, it is now the leading technology company in Taiwan and employs over 12,500 people around the world. ASUS makes products in almost every conceivable category of information technology too, including PC components and peripherals, notebooks, tablets, servers and smartphones. Innovation is key to the success of ASUS. Having unveiled the PadFone to a rapturous audience at Computex 2011, this year ASUS chairman Jonney...

Words: 4745 - Pages: 19

Free Essay

Cellonics

...1 CHAPTER-1 INTRODUCTION Seminar Report For Electronics (ECE) / Electrical (EEE) / Instrumentation (EI or AE&I) Engineering or Sciences 1INTRODUCTION Are you tired of slow modem connections? Cellonics Incorporated has developed new technology that may end this and other communications problems forever. The new modulation and demodulation technology is called Cellonics. In general, this technology will allow for modem speeds that are 1,000 times faster than our present modems. The development is based on the way biological cells communicate with each other and nonlinear dynamical systems (NDS). Major telcos, which are telecommunications companies, will benefit from the incredible speed, simplicity, and robustness of this new technology, as well as individual users. In current technology, the ASCII uses a combination of ones and zeros to display a single letter of the alphabet (Cellonics, 2001). Then the data is sent over radio frequency cycle to its destination where it is then decoded. The original technology also utilizes carrier signals as a reference which uses hundreds of wave cycles before a decoder can decide on the bit value (Legard, 2001), whether the bit is a one or a zero, in order to translate that into a single character. The Cellonics technology came about after studying biological cell behaviour. The study showed that human cells respond to stimuli and generate waveforms that consist of a continuous line of pulses separated by periods of silence. The...

Words: 4313 - Pages: 18

Free Essay

E-Waste Indonesia

...Donald P. Santoso ERM 428 Spring 2015 Arizona State University 2 E-WASTE IN INDONESIA Abstract While economic development gives rise to markets of emerging technologies, it also creates an emerging global issue in the management of the electronic waste (e-waste) it generates. Unfortunately Moore’s Law, which articulates that technological advancements follow an exponential upward growth every year, does not apply to the innovation in recycling that technology. E-waste is a term for waste electrical and electronic equipment (WEEE). These products and components can range from home appliances to consumer electronics; they are defined as e-waste once they reach the end of life, and no longer retain value through its intended function. The European Union (EU) estimates that the amount of global WEE increases 3-5% annually, equivalent to three times the growth of other categories of solid waste (Schwarzer, 2005). Electronic products have become extremely affordable in today’s economy, making it increasingly cheaper to replace these goods rather than fix them. Interval updates in the electronic sector also encourages pre-mature obsolescence of many products (Agamuthu et al., 2012). These factors contribute to a high turnover rate of electronics in the market. As a consequence, there is little incentive for both the industry and consumers to recycle or refurbish electronics. Instead, used electronics and e-waste are commonly exported to developing Asian countries...

Words: 4475 - Pages: 18

Premium Essay

Student

... Master of Business Administration (INTERNATIONAL - MBA) Bachelor of Engineering (EEE) Email:divyagowthaman@yahoo.com Objective To obtain a challenging position that enhances my skills, be regular and committed in whatever I involve into and make my contribution through my knowledge, interest and enthusiasm. Experience Details OCT 2011 –SEP 2014 (3 years -1 month) BHARTI AIRTEL LIMITED working as a SENIOR SALES CO-ORDINATOR ¬Awarded as BEST TEAM PERFORMANCE on May 2014 throughout India ¬ Handled 15 members in a group ¬ Coordinate support for sales professionals in creating sales strategies ¬ Develop methodologies and logistics to market and sell products or services. ¬ Coordinate and assist customers in meeting their merchandise requirements. ¬ Support sales and marketing teams in achieving hundred percent outcomes ¬ Coordinate sales efforts in reaching or exceeding sales targets and goals. ¬ Coordinate marketing efforts to maximize business opportunities. ¬ Develop future sales projections and coordinate efforts to achieve outcomes. ¬ Handled 15 members in a group Academic Profile ➢ IMBA (INTERNATIONAL MASTER OF BUSINESS ADMINISTRATION) – Beijing Institute of Technology –CHINA(2014 Sep - present) ➢ B.E-EEE (Bachelor degree in Electrical and Electronics Engineering) from S.A Engineering College (Anna University), passed out in April 2011. ...

Words: 423 - Pages: 2

Free Essay

Dual Efficient Solar Panal

...RVS COLLEGE OF ENGINEERING AND TECHNOLOGY DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING DUAL EFFICIENT SOLAR PANEL (A BREAKTHROUGH IN RENEWABLE ENERGY RESOURCES) AUTHORS: 1)SATHYA N 2)VIJAYALAKSHMI K 3)SUMITHRA S III Yr – EEE III Yr – EEE III Yr – EEE sathya.sathyanatesan@gmail.com v2.28.kavi@gmail.com sumithras60@gmail.com PH : 82209 90854 PH : 97892 21605 PH : 99655 27343 CONTENTS * PROBLEM STATEMENT * ABSTRACT * INTRODUCTION * CONVENTIONAL SOLAR PANEL * WORKING OF SOLAR PANEL * PROPOSING SYSTEM * A THERMIONIC EFFECT * THERMIONIC CONVERTER * PARABOLIC CONCENTRATORS * PROPOSED SET UP * CONCLUSION PROBLEM STATEMENT: Generally the solar panels are considered to be inefficient for harnessing electrical energy due to the fact that the efficiency we are obtaining out of solar modules is of the range of 20-30%. Because the light energy only utilized by the solar panel for the production of electricity in the meantime the heat energy from the sun is left wasted in current situations. ABSTRACT: In our paper we are proposing some ideas in which it is possible to harness the light energy as well as heat energy from the same solar panel modules to generate electricity. Solar panels utilizing light energy. So we don’t have much more problem in it. But to make use of the heat energy Caesium coating is provided. By using...

Words: 1675 - Pages: 7

Free Essay

Comparison Between Ipad/ Netbook

...Computing Fundamentals Within this assignment I have evaluate and compare two different mobile devices which feature different hardware and software aspects. The first device I have chosen is the Apple iPad. The second device I have chosen is the ASUS 1015CX Eee PC netbook. The reason I have chosen the iPad is because of the popularity and constant good reviews it has been given. And to compare with it I have chosen the ASUS 1015CX Eee PC netbook which seem to be on their last run because of the up rise in tables being sold. The iPad is a proper tablet as it is one device with everything built into it. It has a 9.7 multi touch screen with retina display, to provide the ultimate high quality screen image. The iPad also has a headphone jack and docking/charging port to provide users the ability to listen to music, videos etc. The ASUS 1015CX Eee PC netbook however is a fully working computer, it comes with full version of Windows 7 and has the standard USB ports, memory card port and headphone jack. Here is a table comparing the two devices in general; | Apple iPad (WI-FI + 4G) 16gb | ASUS 1015CX Eee PC | Operating system | Apple iOS 5 | Windows 7 home premium | Processor | Apple A5X Dual-Core with Quad-Core graphics | Intel Atom N2600 1.66 GHz | Cache Memory | L1-32KB instruction32KB dataL2-1MB | L1-32KB instruction24KBL2-1MB | RAM | 1GB DDR2 RAM | 1GB DDR3 RAM | Display | 9.7” Retina Display (2048x1536) 264ppi | 10.1" LED Backlight 1024x600 | Storage | 16GB...

Words: 2964 - Pages: 12

Premium Essay

Srs Onliune Regisration

...EX.NO: EXAM REGISTRATION SYSTEM DATE: 1. Intoduction: The aim of this project is to implement the online registration for the examination conducted by the DCE concern. This enables ease of filling and submitting forms for the ones who appear. Problem statement: TCS is a company which conducts the entrance examination every year for the recruitment of its employees. And there are a very vast number of members enrolling for this exam every year, which includes students and employees. This enrolment becomes tedious when there are only a few centers issuing the forms. As a solution this issue, we design the following software which enables the E-Registration for this exam. Glossary: This software is used for the online exam registration for the exam conducted by the Tata Consultancy Services. It posses the following requirements: 1.1Audience: The examinees who appear for this software entrance test are the ones who are benefited by this software. 1.2 Organization: This software is used by the software concern which conducts the examination for the recruitment of its employees. Scope: This is “Exam Registration” software, which is used to register for the examination of a software company. The advantage of E-registration over the application-form system is that, one can submit this form from the place they are in. It saves time as well as an efficient system that enables easy access...

Words: 2528 - Pages: 11

Premium Essay

Syllabus

...partnership with the larger community, producing competent and principled professionals who will contribute significantly to the betterment of society. DEPARTMENT MISSION STATEMENT The Electrical and Electronics Engineering (EEE) Department commits itself to provide students with industry-grade and outcomes-based education in electrical, electronics and communications engineering that will allow the students to develop a greater sense of professional responsibility, social awareness and high competitiveness in industry or in graduate work. DEPARTMENT VISION STATEMENT The Electrical and Electronics Engineering (EEE) Department envisions itself as a center of excellence, leadership, and an internationally recognized institution in electrical and electronics engineering education and technology. Section 2 PROGRAM OUTCOMES a. ability to apply knowledge of mathematics and science to solve engineering problems b. ability to design and conduct experiments, as well as to analyze and interpret data c. ability to design a system, component, or process to meet desired needs within realistic constraints such as economic, environmental, social, political, ethical, health and safety, manufacturability, and sustainability, in accordance with standards d. ability to function on multidisciplinary teams e. ability to identify, formulate, and solve engineering problems f. understanding of professional and ethical responsibility g. ability to communicate effectively h. broad education necessary to...

Words: 1551 - Pages: 7

Premium Essay

Digital Voting Machine Project Report

...A Project Report On Digital Display: Digital Voting machine Submitted to Amity University Uttar Pradesh in partial fulfilment of the requirements for the award of the degree of Bachelor of Technology By Puneet Kumar(A2324612066) Manish Tiwari(A2324612067) Siddhaika Arora(A2324612068) Saket Kumar(A2324612069) Shubhangi Saxena (A2324612070) Under the guidance of Mr. Kamlesh Pandey DEPARTMENTOF ELECTRICAL & ELECTRONICS ENGINEERING AMITYSCHOOL OF ENGINEERING AND TECHNOLOGY CERTIFICATE On the basis of declaration submitted by students of BTech EEE, I hereby certify that the summer project report titled “Digital Display- Digital Voting Machine” which is submitted to Department of Electrical and Electronic Engineering, Amity School of Engineering and Technology, Amity...

Words: 1831 - Pages: 8

Free Essay

Strategy

...VENDOR PROFILE HCL Technologies — Vendor Profile Series for R&D/Product Engineering Services Mukesh Dialani IDC OPINION As HCL Technologies likes to put it, product engineering is in its DNA. Since inception of its group operations more than 30 years ago, the company has invested in creating technology products and offering engineering services to its customers. Until recently, its focus was to position itself as a "technology services provider." IDC believes that in order to scale revenue and utilize its assets more productively, the strategy has changed since the past five to six years to include other IT services offering. As a result, engineering and R&D services now contribute to approximately 26% of HCL Technologies' total revenue. IDC has made the following observations: ! It is commendable to note that revenue for R&D/product engineering services has risen by 40%, while head count has risen only by approximately 24%. This indicates that HCL is successfully optimizing the use of its resources. ! Among its various initiatives, its Global Risk Reward Partnership (GRRP) model is unique and does enable it to create differentiation. However, success of this partnership will be determined by analyzing customer adoption over the next 2–3 years. ! HCL Technologies has created a sound and robust ecosystem consisting of partnerships, alliances with educational institutions, and manpower certification. ! It has acquired more than 270 customers and its top 10 customers contribute...

Words: 3520 - Pages: 15

Premium Essay

Tax Managment

...A Term Paper Report On DIRECT TAXES CODE (DTC): AN OVERVIEW MEANING AND IMPLICATIONS Submitted by Sharath Kumar USN: 1PB11MBA15 4th MBA: F2/’C’ Section Submitted to Prof. GVM Sharma Associate Professor Department of MBA PES IT, Bangalore DEPARTMENT OF MBA PES INSTITUTE OF TECHNOLOGY BANGALORE-570085 (2011-13 Batch) Abstract The Government of India had released the draft Direct Tax Code (‘DTC’) along with a Discussion Paper in August 2009 for public comments. Various stakeholders have provided their feedback and the Government subsequently released a Revised Discussion Paper in June 2010 addressing some of the key concerns on the DTC. The DTC would replace the existing direct tax legislation constituted by the Income Tax Act, 1961 and the Wealth Tax Act, 1957 with effect from April 1, 2011. It aims to simplify the language with an intention to remove uncertainty in interpretation of the tax law and mitigate undue litigation. While most of the provisions in the DTC meet these objectives, there are certain provisions relating to Minimum Alternate Tax (‘MAT’), General Anti-Avoidance Rules (‘GAAR’) and Determination of Residential Status of Foreign Corporate, which could have adverse and undesirable consequences. This term paper provides an overview of the key proposals in the DTC and their impact on both domestic and international businesses in India. Introduction The compatibility and conduciveness of a taxation system plays an important...

Words: 2890 - Pages: 12

Free Essay

Medical Instrumentation

...| Activity/Tremor Detector | EEE 4202C-Medical Instrumentation Design | Exercise 1Group #6 | Group Members: Diego RamirezKarina AlonsoEric GundersonWilliam NoundouAlejandro BuitragoRaidel Martinez | 3/7/2012 | Table of Contents Abstract……………………………………………………………………………………………3 Steps Taken………………………………………………………………………………………..3 Data Recorded...………………………………………………………………………………...4-5 Data Tables………………………………………………………………………………………..6 Observations………………………………………………………………………………………7 Answered Questions………………………………………………………………………………7 Lessons Learned…………….……………………………………………………………………..8 Appendix…………………………………………………………………………………………..9 | Abstract The purpose of this exercise is to analyze some parameters of the piezoelectric transducer in order to better understand its characteristics and know which way to use it in this project. The piezoelectric firm transducer has a mass attached on the end of an elastic film. As an input the system response has the movement of the electrode end, and as the output it has the flexure of the firm which causes a voltage displacement used for analysis. This 2nd order high pass function is calculated and analyzed in this experiment by taking into account the mass, spring constant of the film and the friction due to air and plastic viscosity in the firm. For this reason the weight added to the transducer during the procedure was measured to be taken into consideration for the calculations. The ultimate goal is to calculate the resonant frequency...

Words: 1231 - Pages: 5