Skip to content

Commit

Permalink
Added step by step solution to quartic equations when no cubic root i…
Browse files Browse the repository at this point in the history
…s used
  • Loading branch information
alpertron committed Dec 29, 2024
1 parent 7a81e12 commit 172b9a4
Show file tree
Hide file tree
Showing 3 changed files with 321 additions and 262 deletions.
2 changes: 1 addition & 1 deletion ConsoleApplication1.vcxproj.user
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LocalDebuggerCommandArguments>0 "x^4+3x^3-6x^2+3x+1" 1 0</LocalDebuggerCommandArguments>
<LocalDebuggerCommandArguments>0 "x^4+2*x^3+5x^2+2*x+1" 1 2</LocalDebuggerCommandArguments>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
Expand Down
2 changes: 1 addition & 1 deletion bigrational.c
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ void showRatCoeffAndPowerVar(BigRational* rat, int expon, char letter)
}
else
{
*ptrOutput++ = '*';
*ptrOutput = '*';
ptrOutput++;
}
}
Expand Down
Loading

0 comments on commit 172b9a4

Please sign in to comment.