How i can pay?

The BakFirn Corporation, a publicly traded firm, has contracted with YOUCPA, your public accounting firm, for an audit. The BakFirn Corporation manufactures specialty construction tools. The tools are used in the unique construction of homes, warehouses, and multiunit dwellings. The prices range from $1,000 to $5,000 per unit.

During the audit, the audit team has determined the risk assessment of the client. Consequently, the audit has to respond to the assessed risks of material misstatement at the financial statement and assertion levels. The YOUCPA audit team has asked you, the auditor, to prepare a list of actions that you will take to assess the audit risk.

The following information is available in the year just finished:

  • The BakFirn Corporation end-of-year is 12/31/20XX.
  • Sales for the previous year were $10,000,000. Sales this year are coming in at $9,500,000.
  • The firm is in the construction machine industry, making specialty tools.
  • Account receivable days sales outstanding (DSO) has been averaging 90–120 days. The year before, it was 80–90 days.
  • Inventory turns have decreased from 3 to 2 per year.
  • Account receivable and inventory make up 80% of total assets.
  • Internal auditing has been reduced by one person to reduce costs.
  • An initial test of controls in cash receipt indicated a lack of following procedures.
  • The construction industry is in the third year of a downturn. It is forecasted to last two more years.
  • The audit team has defined materiality to be focused on account receivable and inventory with $3,000 being the initial threshold. Net income for last year was $1,000,000.
  • Inventory at the end of the year was $2,500,000.
  • Account receivable at the end of the year was $2,740,000, or 100 DSO.
  • The previous auditors did not disclose any fraud or any management issues at the meeting with BakFirn and YOUCPA. The reason for the auditor change was explained as a costs reduction program.

Assignment Guidelines:

  1. Audit Assessment Steps:
    1. What is the initial audit risk? High, medium or low?
    2. What factors made you decide on this level?
  2. Audit Plan Assertions
    1. What would you include in the audit plan, and why?
    2. Would you plan a test of controls or substantive tests? Why or why not?
    3. Would these tests make a difference in the nature, timing, and extent of audit procedures? If so, how?
  3. Audit Plan Evidence
    1. Would you plan to put reliance on prior-year evidence? Why, or why not?
    2. Would your evidence come from observation, analytical procedures, or other means? Explain your reasoning.
    3. Would the evidence prove or disprove an assertion on the reliance of a specific balance sheet account or financial statement account? Explain your reasoning.

 

 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Round each fraction (3/5 & 3/4) and estimat the sum.

Round each fraction (3/5 & 3/4) and estimat the sum.

 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Discrete-Time Signals and Systems

 

    • Watch video entitled “Module 6 –  Discrete-Time Signals in MATLAB”
    • Work the lab activity below using MATLAB.
    • Include answers for Problems and include MATLAB coding along with any output plots that support solutions into a Word document entitled “Lab6_StudentID”.  Where your student id is substituted in the file name.
    • Upload file “Lab6_StudentID”.

 

Activity 1:

 

A discrete-time system can be described in one of two ways.  One is by the unit-pulse response of the system, and the other is by the difference equation.  In the first case, if we are given an input and want to find the output, we have to convolve the system response with the input signal.  In the second case, we have to solve the difference equation for the output when the input signal is substituted into the difference equation.  The result should be the same no matter what approach is used. 

 

A discrete-time system has the following unit-pulse response:

 

              for

 

Correspondingly, the following difference equation describes the behavior of the system:

 

 

    • Use the Matlab command conv to calculate the response of the system to a unit step input, x[n]=u[n].  Consider .  Show what you type into the Matlab command window.  Also, submit a plot of the output.  Be sure to label your axes. 

 

Matlab Tip:  Remember that you can easily get help on a command in Matlab by typing help with the command at the prompt:

 

EDU>>help conv

 

Matlab Tip:  Also, don’t forget that in Matlab when you do certain operations on an array element-by-element, you must precede the operator with a period.  For instance, in Matlab, if you define an array n as follows:

 

EDU>>n=[0:20];

 

then the first term of the unit-pulse response is written as 0.5.^n  

 

Matlab Tip:  Sometimes it is useful to know the size of arrays you have created.  This can be done in several ways.  For example, you can use the command size:

 

EDU>> size(n)

 

ans =

 

     1    21

 

The size of the array is returned.  In this case, the array n has a size of 1 row by 21 columns.

 

Alternatively, you can switch the display from the Current Directory to the Workspace.  Then all current variables and arrays and their sizes are displayed.  Just click on Workspace in the upper left corner as indicated below.

 

 

    • Use the Matlab function recur to calculate the response of the system to a unit step input, x[n]=u[n].  Again consider .  Show all that you type into the Matlab command window.  Submit a plot of the output with the axes labeled.

 

The Matlab function recur is not a function which comes with Matlab or any of the toolboxes you have installed.  Instead, it is a that must be added to your Matlab directory. 

 

The Matlab function recur can be found in a zip file at the Mathworks site at the following location:

 

http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=2148

 

Extract the file recur.m to the current directory shown at the top of the Matlab window.

 

On the other hand, you can copy and paste the script below into a text file like Notepad and save it as recur.m in the current directory shown at the top of the Matlab window.

 

function y = recur(a,b,n,x,x0,y0);

 

%

 

% y = recur(a,b,n,x,x0,y0)

 

%  solves for y[n] from:

 

% y[n] + a1*y[n-1] + a2*y[n-2]… + an*y[n-N]

 

%   =  b0*x[n] + b1*x[n-1] + … + bm*x[n-M]

 

%

 

% a, b, n, x, x0 and y0 are vectors

 

% a = [a1 a2 … aN]

 

% b = [b0 b1 … bM]

 

% n contains the time values for which the solution will be computed

 

% y0 contains the initial conditions for y, in order,

 

%    i.e., y0 = [y[n0-N], y[n0-N+1], …,y[n0-1]]

 

%    where n0 represents the first element of n

 

% x0 contains the initial conditions on x, in order

 

%    i.e., x0 = [x[n0-M],…,x[n0-1]]

 

% the output, y, has length(n)

 

%

 

N = length(a);

 

M = length(b)-1;

 

if length(y0) ~= N,

 

  error(‘Lengths of a and y0 must match’)

 

end

 

if length(x0) ~= M,

 

  error(‘Length of x0 must match length of b-1’)

 

end

 

y = [y0 zeros(1,length(n))];

 

x = [x0 x];

 

a1 = a(length(a):-1:1);             % reverses the elements in a

 

b1 = b(length(b):-1:1);      

 

for i=N+1:N+length(n),

 

  y(i) = -a1*y(i-N:i-1)’ + b1*x(i-N:i-N+M)’;

 

end

 

y = y(N+1:N+length(n));

 

To get information on how to use the function, at the Matlab prompt, type:

 

EDU>>help recur

 

It might be helpful to change the index of the difference equation such that the highest index is n rather than n+2.

 

    • Are your plots the same?  If not, why not?

 

 

**PLEASE SEE ATTACHMENT**

 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

week 4 discussion: Diversity in the Workplace and Work-Life Balance

Determine which class protected by Title VII of the Civil Rights Act of 1964 had the greatest impact on the workforce of the 20th century. Next, determine which class might have the greatest impact on the workforce of the 21st century. Support your positions.

  • From the e-Activity, select the single most significant European work / life balance practice that U.S. companies could most easily implement. Provide a specific scenario or example to support your response.
 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Economics Essay

Economics Analysis Essay

For this assignment, you will write a 2–3-page paper (double-spaced, 1-inch margins) providing at least 1 example of how government has overstepped biblical principles in some form of economic policy.

 

Options include the following topics:

  • A specific piece of legislation relating to business regulation or taxation.
  • The “party platform” of either the Republican Party or the Democratic Party (or both).
  • The role of the Federal Reserve.
  • The budget process.

 

In discussing one of these topics, incorporate clear references from the required reading.

 

The required Reading & Study material for Module/Week 7 must be cited specifically, and you must include outsides sources as well. You must include at least 2 sources in your essay, cited in current APA formatting.

Will provide sources 

 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Major Paper #4–Explaining a Concept Research Paper

We will be working on the Explaining a Concept Paper for the next four units, as this is the longest paper you will write for this class.  The Explaining a Concept Paper will be due at the end of Unit 14.

In the Explaining a Concept Paper, you will simply want to explain a concept of your choice, using research to support your explanations/definitions.  This paper should be at least 3-5 pages long, it should include at least two sources, and it should accomplish the following:

*Inform your particular audience about a specific subject.

*Present information confidently and efficiently.

*Use established information for support, as well as personal “evidence” (if applicable) such as short anecdotes and examples from your own experience, or the experience of others.

*Maintain an informative tone (not an argumentative tone, as this is not an argumentative or persuasive paper).

Unit 11 is designed to familiarize you with the Explaining a Concept paper, and to help you choose a topic.  I would like each of you to discuss your topic ideas on the discussion board this unit. 

Looking ahead, Unit 12 will discuss strategies to consider in terms of your approach to this paper, and Unit 13 will explain the basic structure of papers such as this.  Unit 14 is designed to give you time to revise.

***

IMPORTANT NOTE: Papers on the following topics will not be accepted: 

* abortion
* capital punishment
* euthanasia

These topics are far too controversial for the Explaining a Concept Research Paper, which should be informative (not persuasive) in its purpose.  Also, I’ve already read more papers on these topics than anyone should in an entire lifetime, so I won’t read anymore. I encourage you to be more creative in selecting your topic. 

***

 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

NEED PAPER COMPLETED ASAP!! ASAP!! I HAVE THE PAPER STARTED

 

NEED PAPER COMPLETED ASAP!! I HAVE PAPER STARTED NEED IT FINISHED ASAP

 

Final Paper

In this course, you will look at classical ethical theories of utilitarianism, deontology, and virtue ethics. You will also examine different perspectives on ethical issues introduced by relativism, ethical egoism, and emotivism. For this paper, you will apply these theories and perspectives to a current issue, selected from the list of issues below.

Choose one of the ethical issues from the list below to research and write about. It is recommended that you choose a topic you are familiar with or have thought about previously. For example, you might choose an issue that either worries you or enrages you; you might choose one that you have worked on; or you might choose one that relates to recent events in your community.

Possible Issues

  • Corporate executive compensation
  • Corporate contributions to political campaigns
  • Affirmative action
  • The media and its responsibilities
  • Domestic surveillance
  • Whistle blowing in government or in a business
  • Religion in the workplace
  • Pornography
  • Consumer tracking
  • Ethical problems of gambling
  • Progressive taxation rates
  • Immigration
  • Women’s equality

In your paper, you will apply the ethical theories and perspectives to the issue you select. You do not have to use all six, but you should apply at least two ethical theories and at least one ethical perspective in your paper. Make sure you write primarily on ethical topics and concepts; do not get distracted by doing analyses that apply political, economic, religious, or legal perspectives. Describe, compare, and apply the ethical theories and perspectives to the topics. Explain how the theories and perspectives would analyze the issue. What are the ethical issues? Where are there breaches of ethical behavior? How could each theory help people think about what would constitute virtuous or ethical behavior?

The paper must be eight to ten pages in length (excluding title and references pages) and formatted according to APA style. You must use at least five scholarly sources from the Ashford University Library other than the textbook to support your claims. You can also use the Sociology Research Guide located in the Ashford University Library. Cite your sources within the text of your paper and on the reference page. For information regarding APA, including samples and tutorials, visit the Ashford Writing Center, located within the Learning Resources tab on the left navigation toolbar in your online course.

 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

what is the solution to the system of equation? -7x+4y=6 -7x-y=-19

what is the solution to the system of equation? -7x+4y=6 -7x-y=-19
 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

FOR ACADEMIC TIGER ONLY

assingment 10 

assingment 11

test 2 

 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"