Question

In: Accounting

Lorelei files HOH and owns an inn called The Dragon Fly. Currently The Dragon Fly is...

Lorelei files HOH and owns an inn called The Dragon Fly. Currently The Dragon Fly is a single member LLC and all income is reported on her personal income tax return. During 2016, the net profit from The Dragon Fly was $175,500. Lorelei has additional taxable income of $115,000. She is considering incorporating The Dragon Fly. Please calculate the following:

What is Lorelei’s 2016 income tax liability if The Dragon Fly remains a Single Member LLC?

What is Lorelei’s minimum 2016 income tax liability (both individual & corporate) if she incorporates The Dragon Fly, assuming she is able to pay herself the desired salary?

What should she do? Explain.

Solutions

Expert Solution

Case 1: Lorelei’s 2016 income tax liability if The Dragon Fly remains a Single Member LLC.

A single member LLC is taxed as a sole proprietorship. That is, the information about the LLC's income and expenses, and its net income, is prepared using Schedule C. the net income is then brought over to the owner's personal tax return.

Therefore the taxable income in this case for Lorelei is $290,500 ($115,000 + $175,500)

Tax liability falls under the slab: $190,151 - $413,350, which is

$46,278.75 plus 33% of the amount over $190,150

Thus tax liability:

= $46,278.75 + $(290,500-190,150)*33%

=$46,278.75+$33,115.5

=$79,394.25

Case 2: Lorelei’s minimum 2016 income tax liability (both individual & corporate) if she incorporates The Dragon Fly, assuming she is able to pay herself the desired salary.

  • If Lorelei incorporates The Dragon Fly, then she has to pay the personal tax on her separate income which is $115,000 and The Dragon Fly as an separate corporation has to pay tax on income of $175,500.

Therefore her 2016 taxable income falls under the slab: $91,151 - $190,150, which is

$18,558.75 plus 28% of the amount over $91,150

Thus her personal tax liability:

=$18,558.75 + $(115,000-91,150)*28%

=$18,558.75 + $6,678

=$25,236.75

  • In 2016 the tax rate was 34% of the taxable income for corporate and 35% if the taxable income is above $335,000

Therefore the tax liability of The Dragon Fly is:

=34%*$175,500

=$59,670

What should she do?

Total tax liablity if she does not incorporates The Dragon Fly is $79,394.25

Total tax liability if she incorporates The Dragon Fly is $84,906.75 ($59,670+$25,236.75)

Therefore she should not incorporate The Dragon Fly as this way she'll be able to save tax of $5,512.50


Related Solutions

Files that are read by the computer are called ____ files. a. report b. serial c....
Files that are read by the computer are called ____ files. a. report b. serial c. input d. storage The database for a pet supply company includes the following table, named tblCollar, that contains product data for pet collars. The ItemDesc and Color fields contain text. The ItemNum, Price, and Quantity fields contain numbers. ItemNum ItemDesc Color Price Quantity 2358 leather studded collar black 30.00 35 2693 leather collar brown 25.00 25 3547 striped collar red 20.00 75 3855 striped...
You must create two Java files. One is called LastNameFirstNameWeek6Prog.java, and the other is called  Museum.java. Ensure...
You must create two Java files. One is called LastNameFirstNameWeek6Prog.java, and the other is called  Museum.java. Ensure you include ALL files required to make your program compile and run. I would like to see your .java files only. 5% Museum.java Class File 1.    Create a new class called Museum that describes a Museum and includes the functionality below 2.    The new class has the following five attributes: a. officialName – the museum’s given name (i.e.:“ New Orleans Museum of Arts”,etc.), type...
In C++ Create a class called Rational (separate the files as shown in the chapter) for...
In C++ Create a class called Rational (separate the files as shown in the chapter) for performing arithmetic with fractions. Write a program to test your class. Use integer variables to represent the private data of the class-the numerator and the denominator. Provide a constructor that enables an object of this class to be initialized when it's declared. The constructor should contain default values in case no initializers are provided and should store the fraction in reduced form. For example,...
List all files and directories in the current directory and store in a variable called malf....
List all files and directories in the current directory and store in a variable called malf. Count how many lines end with your firstname in the file /etc/conf Explain this command: mv pmu*.[ab]   cces/   Quick help in 5 min pleases with the UNIX program! I want only the final answer
Write the header and the implementation files (.h and .cpp separatelu) for a class called Course,...
Write the header and the implementation files (.h and .cpp separatelu) for a class called Course, and a simple program to test it, according to the following specifications:                    Your class has 3 member data: an integer pointer that will be used to create a dynamic variable to represent the number of students, an integer pointer that will be used to create a dynamic array representing students’ ids, and a double pointer that will be used to create a dynamic array...
Write the header and the implementation files (.h and .cpp separately) for a class called Course,...
Write the header and the implementation files (.h and .cpp separately) for a class called Course, and a simple program to test it (C++), according to the following specifications:                    Your class has 3 member data: an integer pointer that will be used to create a dynamic variable to represent the number of students, an integer pointer that will be used to create a dynamic array representing students’ ids, and a double pointer that will be used to create a dynamic...
9.6 (Rational Class) Create a class called Rational (separate the files as shown in the chapter)...
9.6 (Rational Class) Create a class called Rational (separate the files as shown in the chapter) for performing arithmetic with fractions. Write a program to test your class. Use integer variables to represent the private data of the class-the numerator and the denominator. Provide a constructor that enables an object of this class to be initialized when it's declared. The constructor should contain default values in case no initializers are provided and should store the fraction in reduced form. For...
there are files called LinkedList.h, and Array.h and all the functionality you need has already been...
there are files called LinkedList.h, and Array.h and all the functionality you need has already been implemented. There is also a file called TimeSupport.h that allows you to measure the running time of code segments. There is also a file called RandomSupport.h, which you can use to generate good random numbers. In your app.cpp , create a demo illustrating a scenario where storing numbers in a linked list is more efficient than an array. Your demo should generate a sufficiently...
Write in drjava Problem Design and implement these 4 files: A parent class called Plant with...
Write in drjava Problem Design and implement these 4 files: A parent class called Plant with name (eg Rose, Douglas Fir) and lifespan (could be in days, weeks, months or years) attributes Tree inherits from Plant and adds a height attribute Flower inherits from Plant and adds a color attribute A driver file to test the 3 classes above. The classes described in #1, 2 and 3 above should have the usual constructors (default and parameterized), get (accessor) and set...
Working with Files in C++. Create the following  program called payroll.cpp.  Note that the file you...
Working with Files in C++. Create the following  program called payroll.cpp.  Note that the file you read must be created before you run this program.  The output file will be created automatically by the program.  You can save the input file in the same directory as your payroll.cpp file by using Add New Item, Text File.   // File:  Payroll.cpp // Purpose:  Read data from a file and write out a payroll // Programmer:  (your name and section) #include <cstdlib>...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT